{% extends "admin/change_form.html" %} {% load i18n admin_static admin_modify %} {% block content %}
{% csrf_token %} {% if form.non_field_errors|length > 0 %}

"Please correct the errors below."

{{ form.non_field_errors }} {% endif %}
{% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }} {% if field.field.help_text %}

{{ field.field.help_text|safe }}

{% endif %}
{% endfor %}