mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-18 07:24:00 +01:00
9 lines
290 B
HTML
9 lines
290 B
HTML
{% if form.non_field_errors %}
|
|
<div class="alert alert-error">
|
|
{% if form_error_title %}<h4 class="font-bold">{{ form_error_title }}</h4>{% endif %}
|
|
<ul class="m-0 list-inside">
|
|
{{ form.non_field_errors|unordered_list }}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|