{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags static i18n l10n %} {% block titletag %}{% blocktrans with title=image.title %}Editing reference {{ title }}{% endblocktrans %}{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block extra_js %} {{ block.super }} {% endblock %} {% block content %} {% trans "Editing" as editing_str %} {% include "wagtailadmin/shared/header.html" with title=editing_str subtitle=reference.slug icon="list-ol" %}
{% csrf_token %}
    {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} {% include "wagtailadmin/shared/field_as_li.html" with li_classes="label-above label-uppercase" %} {% endif %} {% endfor %}
{% if user_can_delete %} {% trans "Delete reference" %} {% endif %}
{% endblock %}