{% extends "admin/change_form.html" %} {% load i18n admin_modify %} {% block stylesheets %} {{ block.super }} {% endblock %} {% block javascripts %} {{ block.super }} {% if add %} {% endif %} {% endblock %} {% block content %}

Possible Duplicates

{% csrf_token %}{% block form_top %}{% endblock %}
{% if is_popup %}{% endif %} {% if errors %}

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

    {% for error in adminform.form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% for fieldset in adminform %} {% if forloop.first %}
{% include "admin/includes/fieldset.html" %}

Process Status - {{ current_level }}

{% for level in levels %} {% for check in level.checks %} {{ check }} {% if check.required %} (R) {% endif %}
{% endfor %} {{ level }}
{% endfor %}
{% else %}
{% include "admin/includes/fieldset.html" %}
{% endif %} {% endfor %} {% block after_field_sets %} {% include "admin/includes/custom_field_fieldset.html" with custom_form=custom_form %} {% endblock %} {% for inline_admin_formset in inline_admin_formsets %} {% include inline_admin_formset.opts.template %} {% endfor %} {% block after_related_objects %}{% endblock %} {% block submit_buttons_bottom %}{% submit_row %}{% endblock %} {% if adminform and add %} {% block extrahead %} {{ block.super }} {% endblock %} {% endif %} {% prepopulated_fields_js %}
{% endblock %}