{% extends "wagtailadmin/generic/form.html" %} {% load i18n wagtailadmin_tags %} {% block titletag %}{% blocktrans trimmed with query=query.query_string %}Editing {{ query }}{% endblocktrans %}{% endblock %} {% block content %} {% trans "Editing" as editing_str %} {% include "wagtailadmin/shared/header.html" with title=editing_str subtitle=query.query_string icon="pick" %}
{% endblock %} {% block extra_actions %} {% comment %} The view hasn't extended from generic EditView, so we cannot use the new header buttons in the breadcrumbs for the Delete button. Instead, we'll add a Delete button to the footer actions. {% endcomment %} {% if can_delete %} {{ delete_item_label }} {% endif %} {% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}