{% load crispy_forms_tags crispy_forms_utils crispy_forms_field i18n %} {% specialspaceless %} {% if formset_tag %}
{% endif %} {% if formset_method|lower == 'post' and not disable_csrf %} {% csrf_token %} {% endif %} {% include "unfold_crispy/errors_formset.html" %}
{{ formset.management_form|crispy }} {% if not form_show_labels %} {% if formset.readonly and not formset.queryset.exists %} {% else %} {% for field in formset.forms.0 %} {% if field.label and not field.is_hidden %} {% endif %} {% endfor %} {% endif %} {% endif %} {% for form in formset %} {% if form_show_errors and form.non_field_errors and not form.is_extra %} {% endif %} {% for field in form %} {% include 'unfold_crispy/field.html' with tag="td" %} {% endfor %} {% endfor %} {% if form_add and formset_id %} {% for field in formset.empty_form %} {% include 'unfold_crispy/field.html' with tag="td" %} {% endfor %} {% endif %}
{{ field.label }}{% if field.field.required and not field|is_checkbox %} *{% endif %}
{% include "unfold_crispy/errors.html" %}
{% include "unfold_crispy/inputs.html" %} {% if formset_tag %}
{% endif %} {% if form_add and formset_id %} {% endif %} {% endspecialspaceless %}