{% block title %}
Local Library
{% endblock %}
{% if user.is_authenticated %}
{{ user.get_username }}
Logout
Search
Books
Authors
arrow_drop_down
Ratings
arrow_drop_down
Tags
arrow_drop_down
{% for author in unique_authors %}
{{author}}
{% endfor %}
{% for rating in unique_ratings %}
{{rating}}
{% endfor %}
{% for tag in unique_tags %}
{{tag}}
{% endfor %}
{% else %}
Sign up
Login
{% endif %}
{% block content %} {% endblock %}