puchar/crispy_forms/templates/bootstrap3/layout/field_errors.html
2022-12-05 04:13:11 +01:00

6 lines
230 B
HTML

{% if form_show_errors and field.errors %}
{% for error in field.errors %}
<span id="error_{{ forloop.counter }}_{{ field.auto_id }}" class="help-block"><strong>{{ error }}</strong></span>
{% endfor %}
{% endif %}