{% extends "admin/core/base.html" %} {% load static itertools roles securitytags %} {% load hooks %} {% block title %}Review {{ article.title }}{% endblock %} {% block title-section %}Peer Review{% 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" %} {% endblock breadcrumbs %} {% block body %}
{% if article.stage == 'Unassigned' %}
{% csrf_token %}

 {% trans 'This article is not yet in the review stage' %}.

{% if not article.editor_list %}

{% trans 'Before you can move this paper into review you need to' %} {% trans 'assign an editor' %}.

{% else %} {% endif %}
{% endif %} {% if journal_settings.crosscheck.enable and not article.ithenticate_id %}

{% trans 'This paper has not had an automatic plagiarism check. If you wish to do so you can run a' %} {% trans 'Similarity Check via iThenticate' %} .

{% endif %}
{% for round in review_rounds %}

Files

{% if round.round_number == article.current_review_round %}Delete Round Add Files{% endif %}

{% blocktrans %} These files are the versions sent out to reviewers in Round {{ round.round_number }} of review. {% endblocktrans %}

{% for file in round.review_files.all %}

{{ file.label }}

{{ file.original_filename }}

{% empty %}

No Review Files

Click "Add Files" to select files for review.

{% endfor %}

Reviewers

{% if round.round_number == article.current_review_round %} Add Reviewer
{% csrf_token %} {% if request.session.table_format_reviews %} {% else %} {% endif %}
{% endif %}
{% chain round.active_reviews round.inactive_reviews as reviews %} {% if request.session.table_format_reviews %} {% include "admin/elements/review/reviews_small.html" %} {% else %} {% for review in reviews %} {# TODO: Upgrade to foundation 6.4+ where overflowing dropdown menus are fixed #} {% if forloop.last and forloop.counter > 2 %} {% include "admin/elements/review/review_block.html" with review=review dropdown='top' %} {% else %} {% include "admin/elements/review/review_block.html" with review=review dropdown='right' %} {% endif %} {% endfor %} {% endif %}
{% endfor %}
{% if revisions_requests %}

Revision Requests

{% for revision_request in revisions_requests %} {% endfor %}
Date Requested Date Due Type Date Completed
{{ revision_request.date_requested|date:"Y-m-d" }} {{ revision_request.date_due|date:"Y-m-d" }} {{ revision_request.get_type_display }} {% if revision_request.date_completed %} {{ revision_request.date_completed|date:"Y-m-d" }}{% else %} Underway{% endif %} {% if revision_request.date_completed %} View {% else %} {% endif %}

Current Files

{% blocktrans %} The latest manuscript and figure files for this article. When a revision task is completed these will be updated with the latest versions from the authors. {% endblocktrans %}

{% for file in article.ms_and_figure_files %} {% endfor %}
File ID File Name Uploaded Download
{{ file.pk }} {{ file.original_filename }} {{ file.date_uploaded|date:"Y-m-d G:i" }}  
{% endif %}

Status

This article is currently in the {{ article.stage }} stage. {% if article.stage == 'Under Review' and article.is_under_revision %} This article also has active Revision Requests.{% endif %} {% if article.date_accepted %} This article was accepted on {{ article.date_accepted }} {% elif article.date_declined %} This article was rejected on {{ article.date_declined }} {% endif %}

Steps

{{ journal_settings.general.review_steps|safe }}

Actions

{% user_has_role request 'editor' as editor %}
{% include "admin/elements/summary_modal.html" %} {% include "admin/elements/review/new_round_modal.html" %} {% include "admin/elements/move_to_next_modal.html" %} {% endblock body %} {% block js %} {% include "elements/notes/note_script.html" %} {% if article.is_accepted and article.in_review_stages %} {% include "admin/elements/open_modal.html" with target='move_to_next_modal' %} {% endif %} {% endblock js %}