{% comment %} SPDX-FileCopyrightText: 2024-present Tobias Kunze SPDX-License-Identifier: AGPL-3.0-only WITH LicenseRef-Pretalx-AGPL-3.0-Terms {% endcomment %} {% load i18n %}
{% block field_label_left %} {% if field.field.widget.input_type != "checkbox" or field.field.widget.allow_multiple_selected %} {% endif %} {% endblock %} {% block field_content_right %} {% partialdef field_inner %} {{ field }} {% if field.field.widget.input_type == "checkbox" and not field.field.widget.allow_multiple_selected %} {% endif %} {% endpartialdef %} {% if field.use_fieldset %}
{% partial field_inner %}
{% else %} {% partial field_inner %} {% endif %} {% for text in field.errors %}
{{ text }}
{% endfor %} {% if field.help_text %} {{ field.help_text|safe }} {% endif %} {% endblock %}