puchar/crispy_forms/templates/bootstrap3/errors_formset.html

10 lines
294 B
HTML
Raw Permalink Normal View History

2022-12-05 04:12:09 +01:00
{% if formset.non_form_errors %}
<div class="alert alert-block alert-danger">
{% if formset_error_title %}<h4 class="alert-heading">{{ formset_error_title }}</h4>{% endif %}
<ul>
{{ formset.non_form_errors|unordered_list }}
</ul>
</div>
{% endif %}