5 lines
224 B
HTML
Executable file
5 lines
224 B
HTML
Executable file
{% if form_show_errors and field.errors %}
|
|
{% for error in field.errors %}
|
|
<p id="error_{{ forloop.counter }}_{{ field.auto_id }}" class="help-block"><strong>{{ error }}</strong></p>
|
|
{% endfor %}
|
|
{% endif %}
|