{% extends "orga/base.html" %} {% load compress %} {% load event_tags %} {% load i18n %} {% load static %} {% block extra_title %}{% translate "Assign reviewers" %} :: {% endblock extra_title %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock scripts %} {% block stylesheets %} {% compress css %} {% endcompress %} {% endblock stylesheets %} {% block content %} {% compress js %} {% endcompress %}

{% translate "Assign reviewers" %}

{% include "orga/includes/tablist.html" %}

{% blocktranslate trimmed %} Reviewers can be assigned to tracks by way of review teams. If you require more granular assignments, you can also assign reviewers to proposals individually. {% endblocktranslate %}

{% blocktranslate trimmed %} As teams can belong to multiple events, teams are managed in your organiser settings. {% endblocktranslate %}
{% translate "New team" %}
{% if request.event|get_feature_flag:"use_tracks" %} {% endif %} {% for team in review_teams %} {% if request.event|get_feature_flag:"use_tracks" %} {% endif %} {% endfor %}
{% translate "Team" %} {% translate "Members" %}{% translate "Limited to tracks" %}
{{ team.name }} {% if request.user in team.members.all %} {% endif %} {% if team.members.count %}
{{ team.members.count }}
    {% for member in team.members.all %}
  • {% include "orga/includes/user_name.html" with user=member lightbox=True %}
  • {% endfor %}
{% else %} - {% endif %}
{% for track in team.limit_tracks.all %} {{ track.name }} {% empty %} - {% endfor %}

{% if request.event.active_review_phase.proposal_visibility == "assigned" %} {% blocktranslate trimmed with href=request.event.orga_urls.review_settings %} Reviewers will be able to see and review only their assigned proposals. You can change this in your review settings. {% endblocktranslate %} {% else %} {% blocktranslate trimmed with href=request.event.orga_urls.review_settings %} Reviewers will be able to see and review all proposals, but their assigned reviews will appear highlighted, and they will be directed to them first. You can change this in your review settings. {% endblocktranslate %} {% endif %}

{% blocktranslate trimmed %} This is where you can assign reviewers to specific proposals! Please use this drop-down to switch between the two assignment modes (assigning reviewers to proposals or proposals to reviewers). {% endblocktranslate %} {% blocktranslate trimmed %} You can also use the Actions menu above to import your assignments from a prepared file. {% endblocktranslate %}

{{ direction_form }}
{% include "orga/includes/base_form.html" %}
{% endblock content %}