{% 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 %} {% if current_user.is_authenticated and books.total<1 %}
{% endif %} {% endif %} {% if current_user.is_authenticated and books.total %}

My library

{% if current_user.is_authenticated %} {% include 'book/components/header_buttons.html' %} {% endif %}
{% include 'book/components/new_book_btn.html' %} {% include 'book/components/sort_by_btn.html' %}
{% 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 %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}