{% extends "orga/base.html" %} {% comment %} SPDX-FileCopyrightText: 2025-present Tobias Kunze SPDX-License-Identifier: AGPL-3.0-only WITH LicenseRef-Pretalx-AGPL-3.0-Terms {% endcomment %} {% load i18n %} {% load static %} {% block extra_title %}{% translate "Bulk Tagging" %} :: {% endblock extra_title %} {% block stylesheets %} {% endblock stylesheets %} {% block content %}
{% blocktranslate trimmed %} Select proposals below and add or remove tags in bulk. {% endblocktranslate %}
{% include "orga/includes/review_filter_form.html" %}
{% csrf_token %}
{{ tag_form.tags.as_field_group }}
{{ tag_form.action.as_field_group }}
{% if show_tracks %}{% endif %} {% for submission in submissions %} {% if show_tracks %} {% endif %} {% empty %} {% endfor %}
{% translate "Code" context "proposal identifier code" %} {% translate "Title" %} {{ phrases.schedule.speakers }}{{ phrases.submission.track }}{% translate "Current Tags" %}
{{ submission.code }} {# Organiser-only page: this page requires orga_update_submission, which pure reviewers do not have, so anonymisation is not necessary here. #} {{ submission.title }} {% for speaker in submission.sorted_speakers %} {% include "orga/includes/user_name.html" with user=speaker lightbox=True %}{% if not forloop.last %}, {% endif %} {% endfor %} {{ submission.track|default:"—" }} {% for tag in submission.tags.all %} {{ tag.tag }} {% empty %} — {% endfor %}
{% translate "No proposals found matching your filters." %}
{% endblock content %}