{% block title %}
Local Library
{% endblock %}
{% load static %}
{% block topnav%}
{% if user.is_authenticated %}
{{ user.get_username }}
Logout
{% else %}
Sign up
Login
{% endif %}
{% endblock %} {% if user.is_authenticated %}
{% block sidebar %}
Search
Books
Authors
{% for author in unique_authors %}
{{author.name}}({{author.num_books}})
{% endfor %}
Publishers
{% for publisher in unique_publishers %}
{{publisher}} ({{publisher.num_books}})
{% endfor %}
Ratings
{% for rating in unique_ratings %}
{{rating}} ({{rating.num_books}})
{% endfor %}
Tags
{% for tag in unique_tags %}
{{tag}} ({{tag.num_books}})
{% endfor %}
{% endblock %}
{% block content %}{% endblock %}
{% else %}
You don't have permission to view this.
Login
or
Sign up
{% endif %}