{% extends "wagtailadmin/base.html" %} {% load i18n %} {% load wagtailimages_tags %} {% block titletag %}{% blocktrans with title=document.title %}Editing {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}menu-documents{% 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 %} {% trans "Editing" as editing_str %} {% include "wagtailadmin/shared/header.html" with title=editing_str subtitle=document.title icon="doc-full-inverse" usage_object=document %}
{% csrf_token %}
    {% for field in form %} {% if field.name == 'file' %} {% include "wagtaildocs/documents/_file_field_as_li.html" %} {% else %} {% include "wagtailadmin/shared/field_as_li.html" %} {% endif %} {% endfor %}
  • {% trans "Delete document" %}
{% if document.file %}
{% trans "Filesize" %}
{{ document.file.size|filesizeformat }}
{% endif %}
{% endblock %}