{% extends "admin/core/base.html" %} {% load static %} {% load i18n %} {% load foundation %} {% load files %} {% block title %}Copyediting Review{% endblock %} {% block title-section %}Copyediting Review{% endblock %} {% block title-sub %}{{ copyedit.article.safe_title }}{% endblock %} {% block css %} {% endblock %} {% block breadcrumbs %} {{ block.super }} {% include "elements/breadcrumbs/copyeditor_base.html" %} {% endblock breadcrumbs %} {% block body %}

Guidelines

{{ journal_settings.general.author_copyediting_guidelines|safe }}

Article Files

These are the files the Editor sent to the Copyeditor for Editing.

{% for file in copyedit.files_for_copyediting.all %} {% endfor %}
Label Filename Download
{{ file.label }} {{ file.original_filename }}  

Copy-edited Files

Copy-edited versions of the article files. You can replace the copyeditor's version of the file with your own updated version.

{% for file in copyedit.copyeditor_files.all %} {% empty %} {% endfor %}
Label Uploaded Filename Download Replace
{{ file.label }} {{ file.date_uploaded|date:"Y-m-d G:i" }} {{ file.original_filename }}  
There are no copy-edited files. Upload one.

Complete Task

{% include "elements/forms/errors.html" with form=form %}

{% trans "You can add a note to the editor. They can pass any requests on to the copyeditor." %}

{{ form.author_note|foundation }}
{{ form.decision|foundation }} {% csrf_token %}
{% if form.modal %} {% include "admin/elements/confirm_modal.html" with modal=form.modal form_id="author_copyediting_review" %} {% endif %} {% endblock body %} {% block js %} {% include "elements/jqte.html" %} {% if form.modal %} {% include "admin/elements/open_modal.html" with target=form.modal.id %} {% endif %} {% endblock js %}