{% extends "admin/core/base.html" %} {% load foundation %} {% load hooks %} {% block title %}Review Request{% endblock title %} {% block title-section %}Review Request{% endblock %} {% block breadcrumbs %} {{ block.super }} {% include "elements/breadcrumbs/reviewer_base.html" %}
  • Review Form
  • {% endblock breadcrumbs %} {% block body %}

    General Review Guidelines

    {{ journal_settings.general.reviewer_guidelines|safe }}

    Information for this Form

    {{ assignment.form.intro|safe }}

    Metadata

    {% include "admin/elements/review/review_meta_block.html" with review_request=assignment %}

    Accept or Decline this Review

    {% csrf_token %}

    {% if assignment.date_accepted %} You have agreed to undertake this review. If you are no longer able, please click the decline button below to notify the Editor. {% else %} Please let us know if you intend to complete this review. {% endif %}


    {% if not assignment.date_accepted %} {% endif %}
    {% if journal_settings.general.display_completed_reviews_in_additional_rounds and assignment.article.completed_reviews_with_decision_previous_rounds %}

    Completed Reviews

    {{ journal_settings.general.display_completed_reviews_in_additional_rounds_text|safe }} {% include "admin/elements/review/view_reviews.html" with reviews=assignment.article.completed_reviews_with_decision_previous_rounds %}
    {% if journal_settings.general.share_author_response_letters and assignment.article.completed_revision_requests %}

    Revision Response Letters

    {% include "admin/elements/review/revision_responses.html" with article=assignment.article %}
    {% endif %} {% endif %} {% hook 'review_form_guidelines' %}

    Review Files

     Download all as ZIP
    {% for file in review_round.review_files.all %} {% empty %} {% endfor %}
    Label Download
    {{ file.label }}  
    No files. You should add them before inviting reviewers.
    {% if assignment.visibility == 'open' or assignment.visibility == 'blind' %}
    {% include "elements/author_summary_table.html" with article=assignment.article %}
    {% endif %}
    {% csrf_token %}

    File Upload

    {% if assignment.visibility == 'double-blind' or assignment.visibility == 'blind' %}
    Please check that all comments and files have been fully anonymised before uploading your review.
    {% endif %}
    {{ journal_settings.general.peer_review_upload_text|safe }} {% csrf_token %} {% if assignment.review_file %}Current file: {{ assignment.review_file }}{% endif %}

    Review Form

    {% if journal_settings.general.reviewer_form_download %}Download Review File (Docx){% endif %}
    {% if form.errors %}
    Please correct errors below. Note, you'll have to reselect any files you want uploaded.
    {% endif %} {% include "elements/generate_form.html" with form=form %}

    Your Recommendation

    {% if journal_settings.general.open_peer_review %}{{ decision_form.permission_to_make_public|foundation }}{% endif %} {{ decision_form.decision|foundation }} {{ decision_form.comments_for_editor|foundation }}
    {% if allow_save_review %} {% endif %}
    {% endblock %}