{% block title %}
Local Library
{% endblock %}
{% load static %}
{% block sidebar %}
Home
All books
All authors
{% if user.is_authenticated %}
User: {{ user.get_username }}
My Borrowed
Logout
{% else %}
Login
{% endif %}
{% endblock %}
{% block content %}{% endblock %}