Back to Netbox

Render Errors

netbox/utilities/templates/form_helpers/render_errors.html

4.6.9637 B
Original Source

{% load form_helpers %} {% load helpers %} {% load i18n %} {% if form.errors or form.non_field_errors %}

{% trans "Errors" %}

{% if form.errors and '__all__' not in form.errors %}


{% endif %} {% if form.errors and '__all__' not in form.errors %} {% for field_name, errors in form.errors.items %} {% if not field_name|startswith:'__' %} {% with field=form|getfield:field_name %} {{ field.label }} {% for error in errors %} - {{ error }} {% endfor %} {% endwith %} {% endif %} {% endfor %} {% endif %} {% if form.non_field_errors %}


{{ form.non_field_errors }} {% endif %}

{% endif %}