summaryrefslogtreecommitdiffstats
path: root/templates/w3/errors.html
blob: db09490cdecdfc76e3c65f933ba71097d3c3a18c (plain) (blame)
1
2
3
4
5
6
7
8
{% if form.non_field_errors %}
    <div class="w3-red">
        {% if form_error_title %}<h4>{{ form_error_title }}</h4>{% endif %}
        <ul>
            {{ form.non_field_errors|unordered_list }}
        </ul>
    </div>
{% endif %}