Create New Review Round

{% if article.current_review_round_object.reviewassignment_set.all %}

Creating a new review round will automatically withdraw active assignments. Creating a new round will have the following effect for the current round's assignments:

    {% for assignment in article.current_review_round_object.reviewassignment_set.all %}
  • Assignment #{{ assignment.pk }} by {{ assignment.reviewer.full_name }}
    • {% if assignment.status.code == 'wait' or assignment.status.code == 'accept' %} Current Status: Active, this assignment will be closed.{% else %}Current Status: {{ assignment.status.display }}, no action required.{% endif %}
  • {% endfor %}
{% else %}

There are no active assignments. Use the button below to create a new round.

{% endif %}
{% csrf_token %}