{% extends "sveedocuments/page_details/subbase.html" %} {% load i18n mptt_tags documents_markup documents_utils %} {% block sveedocuments_content %} {% document_context page_instance %}
{% if document_toc %}

{% trans "Table of content" %}

{{ document_toc }}
{% endif %} {% with document_navigation as tree_descendants %} {% if tree_descendants %}

{% trans "Navigation" %}

    {% recursetree tree_descendants %} {{ node.title }} {% if not node.is_leaf_node %}
      {{ children }}
    {% endif %} {% endrecursetree %}
{% endif %} {% endwith %}
{% include "sveedocuments/page_details/_action_menu.html" %}
{{ document_render }}
{% endblock %}