{% extends "admin/core/base.html" %}
{% load foundation %}
{% load files %}
{% load i18n %}
{% block title %}Revision for {{ revision_request.article.title }}{% endblock title %}
{% block title-section %}Revision for {{ revision_request.article.safe_title }}{% endblock %}
{% block breadcrumbs %}
{{ block.super }}
{% include "elements/breadcrumbs/review_base.html" with subpage="yes" %}
Revisions for {{ revision_request.article.safe_title }}
{% endblock breadcrumbs %}
{% block body %}
Information
You have been asked to revise your article manuscript. If the editor has made peer review comments
available for you to view, these will be visible below. The manuscript and any additional files are
also listed below.
Editor {{ revision_request.editor.full_name }} has made
the decision {{ revision_request.get_type_display }} and provided
the following note:
{{ revision_request.editor_note|safe }}
Reviews
{% include "admin/elements/review/view_reviews.html" %}
{% if form.modal %}
{% include "admin/elements/confirm_modal.html" with modal=form.modal form_id="do_revision" %}
{% endif %}
{% endblock body %}
{% block js %}
{% if form.modal %}
{% include "admin/elements/open_modal.html" with target=form.modal.id %}
{% endif %}
{% endblock js %}