Add New Round

{% csrf_token %} {% if article.proofingassignment.current_proofing_round.has_active_tasks %}

In order to add a new round, you will automatically close the following proofing requests. You can add a note that will be attached to the automatic email sent to them.

    {% for task in article.proofingassignment.current_proofing_round.proofingtask_set.all %} {% if not task.completed %}
  • {{ task }}
  • {% endif %} {% endfor %}
{% else %}
  • This round has no tasks to close.
{% endif %}