{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2024-2025 JWP Consulting GK #} {# SPDX-License-Identifier: BSD-3-Clause #} {# SPDX-FileCopyrightText: Django Software Foundation and individual contributors. #}
{# TODO add back the anchorTop to the right of the label #} {% if field.use_fieldset %}
{% if field.label %}{{ field.legend_tag }}{% endif %} {% else %} {% if field.label %}{{ field.label_tag }}{% endif %} {% endif %} {{ field }} {% if field.errors or field.help_text %}
{% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% if field.help_text %} {{ field.help_text|safe }} {% endif %}
{% endif %} {% if field.use_fieldset %}
{% endif %}