{% extends "admin/change_form.html" %} {% load i18n %} {% block content %} {% if errors %}

{% blocktrans count errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{{ adminform.non_field_errors }} {% endif %}
{% csrf_token %}
{% for field in adminform.visible_fields %}
{% if field.errors %}{{ field.errors }}{% endif %} {{ field.label_tag }} {{ field }}
{% endfor %}
{% endblock %}