{% extends "orga/base.html" %} {% load bootstrap4 %} {% load i18n %} {% load review_score %} {% load rules %} {% block content %} {% has_perm 'orga.change_settings' request.user request.event as can_see_settings %} {% has_perm 'orga.perform_reviews' request.user request.event as can_review %}
{% if review_count %}

{{ review_count }}

{% blocktrans trimmed count count=request.event.reviews.count %} lonely review {% plural %} total reviews {% endblocktrans %} {% if avg_reviews %}
({% blocktrans with avg=avg_reviews %}{{ avg }} reviews/reviewer{% endblocktrans %}) {% endif %}
{% else %}

{% trans "Zero" %}

{% trans "total reviews" %}
{% endif %} <{% if can_see_settings %}a href="{{ request.event.orga_urls.team_settings }}"{% else %}div{% endif %} class="dashboard-block">

{{ active_reviewers }}

{% blocktrans trimmed count count=active_reviewers %} lonely active reviewer {% plural %} total active reviewers {% endblocktrans %} {% if reviewers != active_reviewers %}
({% blocktrans with count=reviewers %}{{ count }} total{% endblocktrans %}) {% endif %}
{% if can_see_settings %}

{% trans "Change settings" %}

  • {% trans "Set a review deadline" %}
  • {% trans "Determine the score range" %}
{% endif %} {% if can_review and next_submission %}

{% trans "Review!" %}

{% blocktrans with count=missing_reviews.count trimmed %} Click here to submit more reviews, there are still {{ count }} missing! {% endblocktrans %}
{% elif can_review %}

{% trans "Bravo!!" %}

{% trans "There are no submissions left to review!" %}
{% endif %}
{% bootstrap_form search_form %} {% bootstrap_field filter_form.submission_type %} {% bootstrap_field filter_form.state layout='inline' %}
{% for submission in submissions %} {% has_perm 'submission.accept_submission' request.user submission as can_accept_submission %} {% has_perm 'submission.reject_submission' request.user submission as can_reject_submission %} {% empty %} {% endfor %}
{% trans "Score" %} {% trans "Reviews" %} {% trans "Title" %} {% trans "Speakers" %} {% trans "Type" %} {% trans "State" %}
{% if submission.avg_score != None %} {% review_score submission %} {% else %} – {% endif %} {% if submission.reviews.all.count %} {{ submission.reviews.all.count }} {% else %} – {% endif %} {% 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' %} {% if can_accept_submission %} {% trans "Accept" %} {% endif %} {% if can_reject_submission %} {% trans "Reject" %} {% endif %} {% endif %}
{% trans "You don't seem to have any submissions yet." %}
{% include "orga/pagination.html" %} {% endblock %}