puchar/crispy_forms/templates/bootstrap4/errors.html

9 lines
295 B
HTML
Raw Permalink 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 class="m-0">
{{ form.non_field_errors|unordered_list }}
</ul>
</div>
{% endif %}