blob: 3f20a8a2cc220edaba7ad2908aa017938c403a18 [file] [log] [blame]
Akronca9bd982016-12-06 16:59:57 +01001{% if form.errors %}
2<div class="alert alert-danger" role="alert">
3 {% for field in form %}
4 {% for message in field.errors %}
5 <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
6 <span class="sr-only">Error:</span>
7 {{ message }} <br>
8 {% endfor %}
9 {% endfor %}
10</div>
11{% endif %}