{% extends 'base.html' %} {% block head_css %} {{ block.super }} {% if user.is_staff %} {% endif %} {% endblock head_css %} {% block head_js %} {{ block.super }} {% if user.is_staff %} {% include 'content/editor_header.html' %} {# TODO: refactor in to a shared template which still exposed a hook or customize from the editor #} {% endif %} {% endblock head_js %} {% block contents %}
{% csrf_token %} {% include 'versionedpages/versioned_control_panel.html' %}

{{ content.form.title }}

Content Settings

{% for field in content.form.non_contenteditable_fields %} {% with field.field as field %} {% include "_field.html" %} {% endwith %} {% endfor %}
{% endblock %}