{% extends "orga/base.html" %} {% load compress %} {% load i18n %} {% load review_score %} {% load rules %} {% load static %} {% block stylesheets %} {% endblock stylesheets %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock scripts %} {% block extra_title %}{% translate "Reviews" %} :: {% endblock extra_title %} {% block content %} {% has_perm "submission.create_review" request.user request.event as can_review %} {% has_perm "person.reviewer_list_speakerprofile" request.user request.event as can_view_speakers %}
{% if can_review and next_submission %} {% blocktranslate trimmed count count=missing_reviews %} {{ count }} proposal is waiting for your review. {% plural %} {{ count }} proposals are waiting for your review. {% endblocktranslate %} {% translate "Click here to get started!" %}
{% translate "Or review all proposals at once." %} {% elif can_review %} {% translate "You’ve got no proposals left to review!" %} {% else %} {% if not reviews_open %} {% translate "Reviews are currently closed." %} {% else %} {% translate "You don’t have reviewer permissions for this event." %} {% endif %} {% endif %}
{% if can_change_submissions %} {% endif %}
{% include "orga/includes/review_filter_form.html" %}
{% csrf_token %}
{% if can_see_all_reviews %} {% for category in independent_categories %}{% endfor %} {% endif %} {% if can_review or submissions_reviewed %} {% if independent_categories and not can_see_all_reviews %} {% for category in independent_categories %}{% endfor %} {% endif %} {% endif %} {# Title #} {% if can_view_speakers %}{% endif %} {% for question in short_questions %}{% endfor %} {% if filter_form.track %}{% endif %} {% if filter_form.tags %}{% endif %} {% if show_submission_types %}{% endif %} {% if can_see_all_reviews %} {% for category in independent_categories %} {% endfor %} {% 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 %} {% for question in short_questions %} {% endfor %} {% if filter_form.track %}{% endif %} {% if filter_form.tags %}{% endif %} {% if show_submission_types %}{% endif %} {% for submission in submissions %} {% if can_see_all_reviews %} {% for score in submission.independent_scores %} {% endfor %} {% endif %} {% if can_review or submissions_reviewed %} {% if independent_categories and not can_see_all_reviews %} {% for score in submission.independent_scores %} {% endfor %} {% endif %} {% endif %} {% if can_view_speakers %}{% endif %} {% for answer in submission.short_answers %} {% endfor %} {% if filter_form.track %}{% endif %} {% if filter_form.tags %}{% endif %} {% if show_submission_types %}{% endif %} {% empty %} {% endfor %}
{% if request.event.review_settings.aggregate_method == "median" %} {% translate "Median" %} {% else %} {% translate "Average" %} {% endif %} {{ category.name }} {% translate "Your score" %} {{ category.name }} {% translate "Reviews" %} {% translate "Title" %}{{ phrases.schedule.speakers }}{{ question.question }}{% translate "Track" %}{% translate "Tags" %}{% translate "Duration" %}{% 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.review_nonnull_count|default:"-" }} {% if submission.review_count != submission.review_nonnull_count %}({{ submission.review_count|default:"-" }}){% endif %} {% if submission.pk in submissions_reviewed %} {% elif request.user in submission.speakers.all %} {% endif %} {% if submission.is_assigned %} {% endif %} {% if can_view_speakers %}{{ submission.title }}{% else %}{{ submission.anonymised.title|default:submission.title }}{% endif %} {% for speaker in submission.speakers.all %} {% include "orga/includes/user_name.html" with user=speaker lightbox=True %}
{% endfor %}
{{ answer.answer_string }} {{ submission.track.name }}
{% for tag in submission.tags.all %} {{ tag.tag }} {% endfor %}
{{ submission.export_duration }}{{ submission.submission_type.name }} {% include "cfp/event/fragment_state.html" with state=submission.state %} {% if submission.pending_state %}
({% translate "pending" %} {% include "cfp/event/fragment_state.html" with state=submission.pending_state %}) {% endif %}
{% if submission.state == "submitted" and can_accept_submissions %}
{% comment %}Translators: This is a button to mark a proposal as accepted{% endcomment %}
{% comment %}Translators: This is a button to mark a proposal as rejected{% endcomment %}
{% endif %}
{% translate "You don’t seem to have any proposals yet." %}
{% translate "Accept" %}: {% translate "Reject" %}:
{% if page_obj.paginator.count > 50 %} {% include "orga/includes/pagination.html" %} {% endif %} {% endblock content %}