{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags i18n %} {% block titletag %}{% blocktrans trimmed with snippet_type_name=model_opts.verbose_name %}Editing {{ snippet_type_name }} - {{ object }}{% endblocktrans %}{% endblock %} {% block bodyclass %}{% if locked_for_user %}content-locked{% endif %}{% endblock %} {% block content %}
{% include 'wagtailsnippets/snippets/headers/edit_header.html' %} {% include "wagtailadmin/shared/side_panels.html" %}
{% include "wagtailadmin/shared/header.html" with title=object icon=header_icon merged=1 only %}
{% csrf_token %}
{{ panel.render_form_content }}
{% endblock %} {% block extra_css %} {{ block.super }} {{ media.css }} {% endblock %} {% block extra_js %} {{ block.super }} {% include "wagtailadmin/pages/_editor_js.html" %} {{ media.js }} {% if workflow_enabled %} {% include "wagtailadmin/shared/_workflow_init.html" %} {% endif %} {% endblock %}