{% extends "admin/base_site.html" %} {% load static %} {% block extrastyle %}{{ block.super }} {% endblock %} {% block extrahead %}{{ block.super }} {{ media }} {% endblock %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content %} {% if help_text %}
{{ help_text|safe }}
{% endif %}
{{ form.non_field_errors }} {% if submit_buttons %}
{% csrf_token %}
{% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }} {% if field.help_text %}
{{ field.help_text|safe }}
{% endif %}
{% endfor %}
{% for submit_button in submit_buttons %} {{ submit_button.html }} {% endfor %}
{% block results %} {% endblock %}
{% endif %}
{% endblock %}