{% extends 'base.html' %} {% if book.owner.id == current_user.id %} {% set show_edit_collection = True %} {% set show_delete_collection = True %} {% set show_create_section = True %} {% set show_create_collection = not collection.sub_collections and not collection.is_leaf %} {% include 'book/edit_collection_modal.html' %} {% include 'book/delete_collection_modal.html' %} {% include 'book/add_section_modal.html' %} {% include 'book/add_collection_modal.html' %} {% endif %} {% block right_sidebar %} {% include 'book/right_sidebar.html' %} {% endblock %} {% block content %} {% include 'book/breadcrumbs_navigation.html'%}

Sections page

{% endblock %} {% block scripts %} {% endblock %}