{% extends "admin/core/base.html" %} {% load i18n %} {% block title %}{{ decision|capfirst }} Article{% endblock title %} {% block title-section %}{{ decision|capfirst }} Article{% 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" %}
  • {{ decision|capfirst }} Article
  • {% endblock breadcrumbs %} {% block body %}

    Article Decision

    Are you sure you want to {{ decision }} {{ article.safe_title }}?

    {% if decision == 'accept' %} {% if article.journal.use_crossref %}

    This journal is set to use Crossref for DOI registration. A DOI will be minted now, without registering any metadata. Author and article metadata will be fully registered once this article is set for publication.

    {% else %}

    Note: DOI registration is not configured.

    {% endif %} {% if accept_article_warning %}
    {{ accept_article_warning|safe }}
    {% endif %} {% endif %} {% if decision == 'decline' and article.incomplete_reviews.count > 0 %}

    The following incomplete reviews will be marked as withdrawn:

    {% for review in article.incomplete_reviews %}

    {{ review.reviewer.full_name }} (Round {{ review.review_round.round_number }})

    This review was assigned on {{ review.date_requested }} and was due on {{ review.date_due }}

    {% if review.date_accepted %}The reviewer agreed to do this review on {{ review.date_accepted }}.{% else %}The reviewer has not agreed to complete this review.{% endif %}


    {% endfor %} {% endif %} {% if article.hidden_completed_reviews %}

    {% trans 'Note: This article has completed reviews that have not been made available to the author:' %}


    {% endif %}

    You can provide some information to the authors below:

    To {{ article.correspondence_author.full_name|se_can_see_pii:article }}

    From {{ request.user.full_name }}
    {% if article.stage == 'Unassigned' %} {% url 'review_unassigned_article' article.pk as cancel_url %} {% else %} {% url 'decision_helper' article.pk as cancel_url %} {% endif %} {% include 'admin/elements/email_form.html' with form=form skip=1 cancel_url=cancel_url %}
    {% endblock body %} {% block js %} {{ block.super}} {{ form.media.js }} {% endblock js %}