{% block title %}
Local Library
{% endblock %}
{% if user.is_authenticated %}
{{ user.get_username }}
Logout
Books
Authors
arrow_drop_down
Ratings
arrow_drop_down
Tags
arrow_drop_down
Series
arrow_drop_down
Publishers
arrow_drop_down
Advanced search
search
{% for author in unique_authors %}
{{author}}
{% endfor %}
{% for rating in unique_ratings %}
{{rating}}
{% endfor %}
{% for tag in unique_tags %}
{{tag}} ({{tag.num_books}})
{% endfor %}
{% for tag in unique_series %}
{{tag}} ({{tag.num_books}})
{% endfor %}
{% for pub in unique_publishers %}
{{pub}} ({{pub.num_books}})
{% endfor %}
{% else %}
Sign up
Login
{% endif %}
{% if user.is_authenticated %} {% block content %} {% endblock %} {% else %}
You don't have permission to view this.
Login
{% endif %}