{% extends "admin2/bootstrap/base.html" %} {% load admin2_tags %} {% block title %}{{ action }} {{ model|model_verbose_name }}{% endblock %} {% block page_title %}{{ action }} {{ model|model_verbose_name }}{% endblock %} {% block content %}
{% csrf_token %} {{ form.as_p }} {% for formset in inlines %}

{{ formset.model|model_verbose_name_plural|capfirst }}

{{ formset.management_form }} {% for field in formset|formset_visible_fieldlist %} {% endfor %} {% for inline_form in formset %} {% for field in inline_form.visible_fields %} {% endfor %} {% endfor %}
{{ field }}
{% if forloop.first %} {% for hidden_field in inline_form.hidden_fields %} {{ hidden_field }} {% endfor %} {% endif %} {{ field }}
{% endfor %}
{% endblock content %}