{% extends "wagtailadmin/admin_base.html" %} {% load wagtailadmin_tags i18n static %} {% block titletag %}{{view.get_header_title}}{% endblock %} {% block extra_css %} {{ block.super }} {{ form.media.css }} {% endblock %} {% block extra_js %} {% block page_js %}{% include "wagtailadmin/pages/_editor_js.html" %}{% endblock %} {{ block.super }} {{ form.media.js }} {% endblock %} {% block furniture %}
{% block header %} {% endblock %}
{# Always show messages div so it can be appended to by JS #} {% if messages or form.errors %} {% endif %}
{% if help_text %} {% panel id="wagtail-fedit-help-text" icon="help" heading=help_text.heading %} {% help_block status=help_text.status %}

{{ help_text.title }}

{{ help_text.text }}

{% endhelp_block %} {% endpanel %} {% endif %} {% block content %} {% block errors %} {% if form.errors or form.non_field_errors %}

{{ view.get_error_title }}

    {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %} {{ form.errors.as_ul }}
{% endif %} {% endblock %} {% endblock %}
{% block sidebar_root %} {% endblock %} {% endblock %}