{% comment %} SPDX-FileCopyrightText: 2026-present Tobias Kunze SPDX-License-Identifier: AGPL-3.0-only WITH LicenseRef-Pretalx-AGPL-3.0-Terms {% endcomment %} {% load django_tables2 %} {% load i18n l10n %} {% if table.configuration_form or table.printable %}
{% if table.configuration_form %} {% endif %} {% if table.printable %} {% if table.configuration_form %} {% endif %} {% endif %}
{% endif %} {% partialdef column-picker %}
{% endpartialdef column-picker %}
{% include "common/includes/loading_spinner.html" %}
{% if table.show_header %} {% for column in table.columns %} {% endfor %} {% endif %} {% for row in table.paginated_rows %} {% for column, cell in row.items %} {% endfor %} {% empty %} {% if table.empty_text %} {% endif %} {% endfor %} {% if table.has_footer %} {% for column in table.columns %} {% endfor %} {% endif %}
{% if column.orderable %} {{ column.header }} {% else %} {{ column.header }} {% endif %}
{% if column.localize == None %}{{ cell }}{% else %}{% if column.localize %}{{ cell|localize }}{% else %}{{ cell|unlocalize }}{% endif %}{% endif %}
{{ table.empty_text }}
{{ column.footer }}