{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-2.0-or-later {% endcomment %} {% load i18n static %} {% block content %}
{% csrf_token %} {% if form.non_field_errors %}

{% for error in form.non_field_errors %} {{ error }} {% endfor %}

{% endif %}
{% for field in form %}
{{ field.errors }}
{{ field.label_tag }} {% if field.is_readonly %}
{{ field.contents }}
{% else %} {{ field }} {% endif %} {% if field.field.help_text %}
{{ field.field.help_text|safe }}
{% endif %}
{% endfor %}
{% endblock %}