{% extends "orga/base.html" %} {% load bootstrap4 %} {% load compress %} {% load i18n %} {% load review_score %} {% load rules %} {% load url_replace %} {% load static %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %} {% block content %} {% has_perm 'orga.view_speakers' request.user request.event as can_view_speakers %}
{% if next_submission %} {% blocktranslate trimmed count count=missing_reviews %} Or review the missing proposal here. {% plural %} Or review the missing {{ count }} proposals one-by-one. {% endblocktranslate %} {% else %} {% translate "You've got no proposals left to review!" %} {% endif %}
{% bootstrap_field filter_form.q %} {% if show_submission_types and filter_form.submission_type %}{% bootstrap_field filter_form.submission_type %}{% endif %}
{% bootstrap_field filter_form.state layout='inline' %}
{% bootstrap_field filter_form.pending_state__isnull layout='inline' %}
{% if filter_form.track %}{% bootstrap_field filter_form.track %}{% endif %} {% if filter_form.content_locale %}{% bootstrap_field filter_form.content_locale %}{% endif %} {% if filter_form.tags %}{% bootstrap_field filter_form.tags %}{% endif %}
{% if filter_form.is_valid and filter_form.cleaned_data.question %}

{% blocktranslate trimmed with question=filter_form.cleaned_data.question.question %} List filtered by answers to question "{{ question }}". {% endblocktranslate %} {% translate "Remove filter" %}

{% endif %}
{% csrf_token %}
{% if can_view_speakers %}{% endif %} {% for category in categories %} {% endfor %} {% for row in table %} {% if can_view_speakers %} {% endif %} {% for score in row.score_fields %} {% endfor %} {% empty %} {% endfor %}
{% translate "Title" %}{% translate "Speakers" %}{{ category.name }}{% translate "Comment" %}
{{ row.submission.title }} {% for speaker in row.submission.speakers.all %} {{ speaker.get_display_name }}{% if not forloop.last %},{% endif %}
{% endfor %}
{% if score %} {% bootstrap_field score layout="inline" %} {% endif %} {% bootstrap_field row.form.text layout="inline" form_group_class="flex-direction-column" %}
{% translate "You don't seem to have any proposals yet." %}
{% endblock %}