{% extends 'pagetree/base_pagetree.html' %} {% load render %} {% block js %} {% for pageblock in section.pageblock_set.all %} {% with block=pageblock %} {% renderjs pageblock %} {% endwith %} {% endfor %} {% endblock %} {% block css %} {% for pageblock in section.pageblock_set.all %} {% with block=pageblock %} {% rendercss pageblock %} {% endwith %} {% endfor %} {% endblock %} {% block bodyclass %}module-{{module.slug}}{% endblock %} {% block bodyid %}section-{{section.id}}{% endblock %} {% block title %}{{section.label}}{% endblock %} {% block pagetitle %}

{{section.label}}

{% endblock %} {% block moduletabs %} {% endblock %} {% block navrightextra %} {% if not request.user.is_anonymous %} edit page {% endif %} {% endblock %} {% block sidenav %} {% if module.get_children %}

Sections

{% include "pagetree/menu.html" %} {% endif %} {% endblock %} {% block content %}
{% if needs_submit %} {% if is_submitted %} {% else %}
{% csrf_token %} {% endif %} {% endif %} {% for pageblock in section.pageblock_set.all %} {% with block=pageblock %}
{% if pageblock.label %}

{{pageblock.label}}

{% endif %} {% render pageblock %}
{% endwith %} {% endfor %} {% if needs_submit %} {% if request.user.is_anonymous %} {% else %} {% if is_submitted %} {% if allow_redo or request.user.is_superuser %} {% csrf_token %}
{% endif %} {% else %} {% endif %} {% endif %} {% endif %} {% include "pagetree/toc.html" %}
{% endblock %} {% block content-nav %} {% with previous=section.get_previous next_section=section.get_next %} {% endwith %} {% endblock %}