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