{% extends "admin/core/base.html" %} {% load foundation %} {% block title %}Request Revisions{% endblock title %} {% block title-section %}Request Revisions{% endblock %} {% block title-sub %}#{{ article.pk }} / {{ article.correspondence_author.last_name|se_can_see_pii:article }} / {{ article.safe_title }}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% include "elements/breadcrumbs/review_base.html" with subpage="yes" %}
  • Request Revisions
  • {% endblock breadcrumbs %} {% block body %}
    {% csrf_token %}

    Revision Request Information

    {% if pending_approval.exists or incomplete.exists %}

    Potential problems detected

    Please, make sure you look over and address the following warnings where necessary

      {% for rev in pending_approval %}
    • Review #{{ rev.pk }} has not been marked as "allow author to see" [change]

    • {% endfor %} {% for rev in incomplete %}
    • Review #{{ rev.pk }} has not been completed by the peer reviewer [withdraw]

    • {% endfor %} Refresh
    {% endif %}

    You can request that an author make revisions to their article by selecting a due date and supplying them with feedback below in the editor note field. You will have the option to send an email, with attachments, on the next page.

    {% include "elements/forms/errors.html" with form=form %} {{ form|foundation }}
    {% if form.modal %} {% include "admin/elements/confirm_modal.html" with modal=form.modal form_id="revision_request" %} {% endif %} {% endblock body %} {% block js %} {% if form.modal %} {% include "admin/elements/open_modal.html" with target=form.modal.id %} {% endif %} {% endblock js %}