fixed auth issue
This commit is contained in:
		
										
											Binary file not shown.
										
									
								
							@@ -3,6 +3,7 @@
 | 
			
		||||
 | 
			
		||||
<head>
 | 
			
		||||
  {% block title %}<title>Local Library</title>{% endblock %}
 | 
			
		||||
 | 
			
		||||
  <meta charset="utf-8">
 | 
			
		||||
  <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
			
		||||
 | 
			
		||||
@@ -17,21 +18,27 @@
 | 
			
		||||
      width: 100%;
 | 
			
		||||
      table-layout: fixed;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    th {
 | 
			
		||||
      text-align: center;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .title {
 | 
			
		||||
      width: 40%;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .author {
 | 
			
		||||
      width: 20%;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .rating {
 | 
			
		||||
      width: 5%;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .tags {
 | 
			
		||||
      width: 15%;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .added {
 | 
			
		||||
      width: 20%;
 | 
			
		||||
    }
 | 
			
		||||
@@ -53,9 +60,12 @@
 | 
			
		||||
        <ul class="left">
 | 
			
		||||
          <li><a href="{% url 'search' %}">Search</a></li>
 | 
			
		||||
          <li><a href="{% url 'books' %}">Books</a></li>
 | 
			
		||||
          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-authors">Authors<i class="material-icons right">arrow_drop_down</i></a></li>
 | 
			
		||||
          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-ratings">Ratings<i class="material-icons right">arrow_drop_down</i></a></li>
 | 
			
		||||
          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-tags">Tags<i class="material-icons right">arrow_drop_down</i></a></li>
 | 
			
		||||
          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-authors">Authors<i
 | 
			
		||||
                class="material-icons right">arrow_drop_down</i></a></li>
 | 
			
		||||
          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-ratings">Ratings<i
 | 
			
		||||
                class="material-icons right">arrow_drop_down</i></a></li>
 | 
			
		||||
          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-tags">Tags<i
 | 
			
		||||
                class="material-icons right">arrow_drop_down</i></a></li>
 | 
			
		||||
        </ul>
 | 
			
		||||
        <ul id="dropdown-authors" class="dropdown-content">
 | 
			
		||||
          {% for author in unique_authors %}
 | 
			
		||||
@@ -82,10 +92,21 @@
 | 
			
		||||
    </nav>
 | 
			
		||||
  </div>
 | 
			
		||||
  <script>
 | 
			
		||||
  $(".dropdown-trigger").dropdown({hover: true, constrainWidth: false, coverTrigger: false});
 | 
			
		||||
    $(".dropdown-trigger").dropdown({
 | 
			
		||||
      hover: true,
 | 
			
		||||
      constrainWidth: false,
 | 
			
		||||
      coverTrigger: false
 | 
			
		||||
    });
 | 
			
		||||
  </script>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  {% if user.is_authenticated %}
 | 
			
		||||
  {% block content %} {% endblock %}
 | 
			
		||||
  {% else %}
 | 
			
		||||
  <h1>You don't have permission to view this.</h1> <!--Here, stefan -->
 | 
			
		||||
  <li><a href="{% url 'login'%}?next={{request.path}}">Login</a></li>
 | 
			
		||||
  {% endif %}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  <script>
 | 
			
		||||
    function sortTable(n) {
 | 
			
		||||
 
 | 
			
		||||
@@ -1,9 +1,10 @@
 | 
			
		||||
{% extends "base.html" %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
{% load static %}
 | 
			
		||||
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="col s4"><a href="{{download}}"><img src="{{imgpath}}" alt="download" srcset=""></a></div>
 | 
			
		||||
  <div class="col s4"><a href="{{download}}"><img src=" {% static "" %}{{imgpath}}" alt="download" srcset=""></a></div>
 | 
			
		||||
  <div class="col s8">
 | 
			
		||||
  <h1> {{book.title}}</h1> 
 | 
			
		||||
  <h4> by
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user