{% extends "admin/change_form.html" %} {% load i18n admin_modify actions massupdate static %} {% block extrahead %}{{ block.super }} {% endblock %} {% block breadcrumbs %}{% if not is_popup %} {% endif %}{% endblock %} {% block content %} {% if form.subject.errors %}
    {% for error in form.subject.errors %}
  1. {{ error|escape }}
  2. {% endfor %}
{% endif %} {{ form.non_field_errors }}
{% csrf_token %}
Configuration:
{% for field in adminform.form %} {% if field.field.widget.input_type == "hidden" %} {{ field }} {% else %} {% endif %} {% endfor %} {% for field in csv_form %} {% endfor %} {% for field in map_form %} {% if field.name != "index_field" %} {% endif %} {% endfor %}
{{ field.label_tag }} {{ field.errors }} {{ field }} 
{{ field.help_text }}

CSV Options

{{ field.label_tag }} {{ field.errors }} {{ field }} {{ field.help_text }}

Columns Mapping

{{ map_form.index_field.errors }}
field name Use for index Column name
{% if field.field.required %}{% endif %} {{ field.label_tag }}{% if field.field.required %}{% endif %} {{ field.errors }}{{ field }} 
{% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %}
{% endblock %}