{% extends "orga/base.html" %} {% 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 can_view_speakers %}{% endif %} {% if show_tracks %}{% endif %} {% for submission in submissions %} {% if can_view_speakers %} {% endif %} {% 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 }} {{ 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 %}