mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-01 18:52:23 +02:00
5 lines
253 B
HTML
5 lines
253 B
HTML
{% for field_name, field_errors in form.errors.items() if field_errors %}
|
|
{% for error in field_errors %}
|
|
<p class="alert alert-danger"><strong>{{ form[field_name].label.text }}:</strong> {{ error|escape }}</p>
|
|
{% endfor %}
|
|
{% endfor %}
|