{% extends "wiki/base.html" %} {% block titleblock %} {% if page %} Editing {{ page.address }} {% elif address %} Creating {{ address }} {% else %} Creating the root page {% endif %} {% endblock %} {% block page_content %} {% load addclass %}

{% if page %} Editing {{ page.address }} {% elif address %} Creating {{ address }} {% else %} Creating the root page {% endif %}

{% include "wiki/_tabs.html" with active_tab="edit" %}
{% csrf_token %} {% if form.non_field_errors %} {% endif %} {% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field|addclass:'form-control' }} {% if field.help_text %} {{ field.help_text|addclass:'form-text text-muted' }} {% endif %}
{% endfor %}

{% endblock %}