{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags %} {% load gravatar %} {% load i18n %} {% load core_tags %} {% block titletag %}{% blocktrans with title=page.title page_type=content_type.model_class.get_verbose_name %}Editing {{ page_type }}: {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}page-editor model-{{ content_type.model }}{% endblock %} {% block content %} {% page_permissions page as page_perms %}
{% explorer_breadcrumb page %}

{% blocktrans with title=page.get_admin_display_title page_type=content_type.model_class.get_verbose_name %}Editing {{ page_type }} {{ title }}{% endblocktrans %}

{% trans "Status" %} {% include "wagtailadmin/shared/page_status_tag.html" with page=page %} {% include "wagtailadmin/pages/_privacy_switch.html" with page=page page_perms=page_perms only %} {% include "wagtailadmin/pages/_lock_switch.html" %}
{% csrf_token %} {{ edit_handler.render_form_content }} {% if is_revision %} {% endif %}
{% endblock %} {% block extra_css %} {% include "wagtailadmin/pages/_editor_css.html" %} {% endblock %} {% block extra_js %} {% include "wagtailadmin/pages/_editor_js.html" %} {% endblock %}