{% block title %}
Local Library
{% endblock %}
{% load static %}
{% block sidebar %}
Home
All books
All authors
====== {% if user.is_authenticated %}
User: {{ user.get_username }}
My Borrowed
Feedback
Logout
{% else %}
Login
{% endif %}
{% endblock %}
{% block content %}{% endblock %}
{% block pagination %} {% if is_paginated %}
{% if page_obj.has_previous %}
previous
{% endif %}
Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}.
{% if page_obj.has_next %}
next
{% endif %}
{% endif %} {% endblock %}