You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
17 lines
386 B
|
|
{% if form.errors %}
|
|
<div class="ui info message">
|
|
<ul class="list">
|
|
|
|
{% for field in form %}
|
|
{% for error in field.errors %}
|
|
<li class="item">{{ error|escape }}</li>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% for error in form.non_field_errors %}
|
|
<li class="item">{{ error|escape }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
{% endif %} |