{% 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.perform_reviews' request.user request.event as can_review %} {% has_perm 'orga.view_speakers' request.user request.event as can_view_speakers %}
{% if can_review and next_submission %} {{ missing_reviews }} {% blocktrans trimmed count count=missing_reviews %} submission is waiting for your review. {% plural %} submissions are waiting for your review. {% endblocktrans %} {% trans "Click here to get started!" %} {% elif can_review %} {% trans "You've got no submissions left to review!" %} {% else %} {% trans "Reviews are currently closed." %} {% endif %}
{% bootstrap_form search_form %} {% bootstrap_field filter_form.submission_type %} {% bootstrap_field filter_form.state layout='inline' %} {% if request.event.settings.use_tracks %} {% bootstrap_field filter_form.track %} {% endif %}
{% csrf_token %} {% if can_view_speakers %}{% endif %} {% if can_view_speakers %}{% endif %} {% for submission in submissions %} {% if can_view_speakers %}{% endif %} {% empty %} {% endfor %}
{% if can_see_all_reviews %} {% trans "Median score" %} {% else %} {% trans "Score" %} {% endif %} {% trans "Reviews" %} {% trans "Title" %}{% trans "Speakers" %}{% trans "Type" %} {% trans "State" %} {% if can_accept_submissions %}
{% endif %}
{% review_score submission %} {{ submission.reviews.all|length|default:'-' }} {% if submission.pk in submissions_reviewed %} {% endif %} {{ submission.title }} {{ submission.display_speaker_names }}{{ submission.submission_type.name }} {% include "cfp/event/fragment_state.html" with state=submission.state %} {% if submission.state == 'submitted' and can_accept_submissions %}
{% endif %}
{% trans "You don't seem to have any submissions yet." %}
{% trans "Accept" %}: {% trans "Reject" %}:
{% endblock %}