{% extends 'base.html' %} {% block right_sidebar %} {% endblock %} {% if current_user.is_authenticated %} {% include 'book/add_collection_modal.html' %} {% include 'book/delete_collection_modal.html' %} {% include 'book/add_sub_collection_modal.html' %} {% include 'book/delete_sub_collection_modal.html' %} {% include 'book/add_section_modal.html' %} {% include 'book/delete_section_modal.html' %} {% endif %} {% block content %}

Table of contents

{% for collection in book.versions[-1].children_collections if not collection.is_root and not collection.is_deleted %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}