{% 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 }} {% blocktranslate trimmed count count=missing_reviews %} proposal is waiting for your review. {% plural %} proposals are waiting for your review. {% endblocktranslate %} {% translate "Click here to get started!" %} {% elif can_review %} {% translate "You've got no proposals left to review!" %} {% else %} {% translate "Reviews are currently closed." %} {% endif %}
{% bootstrap_form search_form %} {% if show_submission_types %}{% bootstrap_field filter_form.submission_type %}{% endif %} {% bootstrap_field filter_form.state layout='inline' %} {% if show_tracks %}{% bootstrap_field filter_form.track %}{% endif %} {% if filter_form.tags %}{% bootstrap_field filter_form.tags %}{% endif %} {% if max_review_count and max_review_count > 1 %}
{% endif %}
{% csrf_token %} {% if can_see_all_reviews %}{% endif %} {% for category in independent_categories %}{% endfor %} {% if can_review or submissions_reviewed %}{% endif %} {% if can_view_speakers %}{% endif %} {% if show_submission_types %}{% endif %} {% if can_see_all_reviews %} {% if independent_categories %} {% for category in independent_categories %} {% endfor %} {% endif %} {% endif %} {% if can_review or submissions_reviewed %} {% if independent_categories and not can_see_all_reviews %} {% for category in independent_categories %} {% endfor %} {% endif %} {% endif %} {% if can_view_speakers %}{% endif %} {% if show_submission_types %}{% endif %} {% for submission in submissions %} {% if can_see_all_reviews %} {% if independent_categories %} {% for score in submission.independent_scores %} {% endfor %} {% endif %} {% endif %} {% if can_review or submissions_reviewed %} {% if not can_see_all_reviews and independent_categories %} {% for score in submission.independent_scores %} {% endfor %} {% endif %} {% endif %} {% if can_view_speakers %}{% endif %} {% if show_submission_types %}{% endif %} {% empty %} {% endfor %}
{% if request.event.settings.review_score_aggregate == "median" %} {% translate "Median" %} {% else %} {% translate "Average" %} {% endif %} {{ category.name }} {% translate "Your Score" %} {{ category.name }} {% translate "Reviews" %} {% translate "Title" %}{% translate "Speakers" %}{% translate "Type" %}{% translate "State" %} {% if can_accept_submissions %}
{% endif %}
{% review_score submission %} {% if score is None %}-{% else %}{{ score }}{% endif %} {% review_score submission True %} {% if score is None %}-{% else %}{{ score }}{% endif %} {{ submission.reviews.all|length|default:'-' }} {% if submission.pk in submissions_reviewed %} {% endif %} {% if can_view_speakers %}{{ submission.title }}{% else %}{{ submission.anonymised.title|default:submission.title }}{% endif %} {% for speaker in submission.speakers.all %} {{ speaker.get_display_name }}{% if not forloop.last %},{% endif %}
{% endfor %}
{{ submission.submission_type.name }} {% include "cfp/event/fragment_state.html" with state=submission.state %} {% if submission.state == 'submitted' and can_accept_submissions %}
{% endif %}
{% translate "You don't seem to have any proposals yet." %}
{% translate "Accept" %}: {% translate "Reject" %}:
{% endblock %}