mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-29 09:52:36 +02:00
5 lines
216 B
HTML
5 lines
216 B
HTML
{% for field_name, field_errors in form.errors.items() if field_errors %}
|
|
{% for error in field_errors %}
|
|
<p class="error">{{ form[field_name].label.text }}: {{ error }}</p>
|
|
{% endfor %}
|
|
{% endfor %}
|