{% extends "wagtailadmin/base.html" %} {% load image_tags %} {% block titletag %}Editing image {{ image.title }}{% endblock %} {% block bodyclass %}menu-images{% endblock %} {% block extra_css %} {% include "wagtailadmin/shared/tag_field_css.html" %} {% endblock %} {% block extra_js %} {% include "wagtailadmin/shared/tag_field_js.html" %} {% endblock %} {% block content %} {% include "wagtailadmin/shared/header.html" with title="Editing" subtitle=image.title %}
{% csrf_token %}
    {% for field in form %} {% if field.name == 'file' %} {% include "wagtailimages/images/_file_field.html" %} {% else %} {% include "wagtailadmin/shared/field_as_li.html" %} {% endif %} {% endfor %}
  • Delete image
{% image image max-800x600 %}
{% endblock %}