{% extends "admin/core/base.html" %} {% load foundation %} {% block title %}Add Review Assignment{% endblock title %} {% block title-section %}Add Review Assignment{% endblock %} {% block title-sub %}#{{ article.pk }} / {{ article.correspondence_author.last_name }} / {{ article.safe_title }}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% include "elements/breadcrumbs/review_base.html" with subpage="yes" %}
  • Add Review Assignment
  • {% endblock breadcrumbs %} {% block body %}
    {% include "elements/forms/errors.html" with form=form %} {% csrf_token %}

    {% blocktrans %} You can select a reviewer using the radio buttons in the first column and complete the section under 'Set Options'. If you cannot find the reviewer you want in this list you can use 'Enroll Existing User' to search the database and give users the Reviewer role, or 'Add New Reviewer' to create a new account for a reviewer (this process is silent, so they will not receive an account creation email). {% endblocktrans %}

    Reviewers who have completed a review for this article in a previous round will appear at the top of this list and will show 'Yes' in the 'Has Reviewed Article' column.

    {% if journal_settings.general.enable_suggested_reviewers %}{% endif %} {% for reviewer in reviewers %} {% include "admin/elements/review/add_reviewer_table_row.html" with reviewer=reviewer %} {% empty %} {% endfor %}
    Select Name Email Address Active Reviews Interests Average Score Last Review Completed Has Reviewed ArticleSuggested ReviewerHistory
    No suitable reviewers.

    2. Set Options

    {{ form.form|foundation }}
    {{ form.visibility|foundation }}
    {{ form.date_due|foundation }}
     
      
    {% if journal_settings.general.enable_one_click_access %}

     Add New Reviewer

    This form allows you to quickly create a new reviewer without having to input a full user's data.

    {% include "elements/forms/errors.html" with form=new_reviewer_form %} {% csrf_token %} {{ new_reviewer_form|foundation }}
    {% endif %} {% if form.modal %} {% include "admin/elements/confirm_modal.html" with modal=form.modal form_id="review_assignment_form" %} {% endif %} {% endblock body %} {% block js %} {% if journal_settings.general.enable_suggested_reviewers %} {% include "elements/datatables.html" with target="#reviewers" sort_list="[7, 'desc'], [8, 'desc']" %} {% else %} {% include "elements/datatables.html" with target="#reviewers" sort_list="[7, 'desc']" %} {% endif %} {% if form.modal %} {% include "admin/elements/open_modal.html" with target=form.modal.id %} {% endif %} {% endblock js %}