{% extends "admin_extra_buttons/action_page.html" %} {% block action-content %} {% if fields %}
{% csrf_token %} {{ form }}
{% if errors %}

Errors

{% for err in errors %} {% endfor %}
{{ err.name }} {{ err.error }}
{% endif %}

Fields

{% for fld in fields %} {% endfor %}
{{ fld }} {{ fld.definition }} {{ fld.attributes }}
{% else %}
{% csrf_token %} {{ form }}
{% endif %}
{% endblock %}