{% extends "admin/change_form.html" %} {% load static i18n %} {% load url from future %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block content %}
{% csrf_token %}
{{ form.non_field_errors }} {% for field in form %}
{{ field.errors }} {% if field.field.required %} {{ field.label_tag }} {% else %} {{ field.label_tag }} {% endif %} {{ field }}
{% endfor %}
{% endblock %}