puchar/crispy_forms/templates/bootstrap4/errors.html
2022-12-05 04:13:11 +01:00

9 lines
295 B
HTML

{% 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 class="m-0">
{{ form.non_field_errors|unordered_list }}
</ul>
</div>
{% endif %}