summaryrefslogtreecommitdiffstats
path: root/templates/w3/layout/field_errors_block.html
blob: e788b797635a02b52693f085d6e1aa4d0b0dc1e4 (plain) (blame)
1
2
3
4
5
{% if form_show_errors and field.errors %}
    {% for error in field.errors %}
        <p id="error_{{ forloop.counter }}_{{ field.auto_id }}" class="invalid-feedback"><strong>{{ error }}</strong></p>
    {% endfor %}
{% endif %}