puchar/crispy_forms/templates/bootstrap3/errors.html

9 lines
283 B
HTML
Raw Normal View History

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