{% extends 'base.html' %}
{% set selected_tab='my_library' %}
{% block title %}My Library{% endblock %}
{% block content %}
{% if current_user.is_authenticated %}
{% include 'book/modals/add_book_modal.html' %}
{% endif %}
{% if not current_user.is_authenticated %}
{% endif %} {% if current_user.is_authenticated and not books.total %}
{% endif %}
{% if current_user.is_authenticated and books.total %}
My library
{% if current_user.is_authenticated %} {% include
'book/components/header_buttons.html' %} {% endif %}
{% endif %} {% for book in books if not book.is_deleted %} {% include
'book/components/book_list_item.html' %} {% endfor %}
{% if current_user.is_authenticated and page.pages > 1 %}