File: errors.html

package info (click to toggle)
python-django-crispy-forms 1.14.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,676 kB
  • sloc: python: 4,025; makefile: 92; sh: 16
file content (8 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
{% if form.non_field_errors %}
    <div class="alert alert-block alert-error">
        {% if form_error_title %}<h4 class="alert-heading">{{ form_error_title }}</h4>{% endif %}
        <ul>
            {{ form.non_field_errors|unordered_list }}
        </ul>
    </div>
{% endif %}