{% extends "batchform/base.html" %} {% load i18n staticfiles %} {% block css %} {{ block.super }} {% endblock css %} {% block content %}
{# Hidden data #} {% csrf_token %} {{ form.management_form }} {# End hidden data #} {% if form.non_form_errors %} {{ form.non_form_errors }} {% endif %} {% for field in form.form.visible_fields %} {% endfor %} {% for inner_form in form %} {% for field in inner_form.visible_fields %} {% endfor %} {% endfor %}
{{ field.label_tag }}
{{ field }}{{ field.errors }}
{% endblock %}