{% extends "admin/core/base.html" %} {% block title %}Delete Review Round{% endblock title %} {% block title-section %}Delete Review Round{% endblock %} {% block breadcrumbs %} {{ block.super }} {% include "elements/breadcrumbs/review_base.html" with subpage="yes" %}
  • Delete Review Round
  • {% endblock breadcrumbs %} {% block body %}
    Delete Round {{ round.round_number }}

    Are you sure you wish to delete review round {{ round.round_number }} for article {{ article.safe_title }}? Deleting this review round will also delete the following review assignments:

      {% for assignment in round.reviewassignment_set.all %}
    • {{ assignment.reviewer.full_name }}, due on {{ assignment.date_due }}
    • {% empty %}
    • This round has no review assignments.
    • {% endfor %}

    {% csrf_token %} Cancel
    {% endblock body %}