{% extends "admin/core/base.html" %} {% load foundation %} {% load static %} {% block title %}Add Copyeditor{% endblock %} {% block title-section %}Add Copyeditor{% endblock %} {% block title-sub %}#{{ article.pk }} / {{ article.correspondence_author.last_name }} / {{ article.safe_title }}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% include "elements/breadcrumbs/copyediting_base.html" %}
  • Add Copyedit Assignment
  • {% endblock breadcrumbs %} {% block body %}
    {% csrf_token %}

    1. Select Copyeditor

     Enroll Existing User

    Select a copyeditor from the list of users below. Note: if a copyeditor already has an active copyediting task for this article they will not appear in the list, you should first close that task if you wish to assign them again.

    {% include "elements/forms/errors.html" with form=form %} {% for copyeditor_role in copyeditors %} {% empty %} {% endfor %}
    Select First Name Last Name Email Address Active Copyedits
    {{ copyeditor_role.user.first_name }}{% if copyeditor_role.user.middle_name %} {{ copyeditor_role.user.middle_name }}{% endif %} {{ copyeditor_role.user.last_name }} {{ copyeditor_role.user.email }} {{ copyeditor_role.user.active_copyedits|length }}
    No suitable copyeditors.

    2. Select Files

    You can select which files are available to the Copyeditor.

    {% for file in article.manuscript_files.all %} {% endfor %} {% for file in article.data_figure_files.all %} {% endfor %}
    ID Label Filename Type Uploaded Download
    {{ file.pk }} {{ file.label }} {{ file.original_filename }} Manuscript {{ file.date_uploaded|date:"Y-m-d G:i" }}  
    {{ file.pk }} {{ file.label }} {{ file.original_filename }} Data/Figure {{ file.date_uploaded|date:"Y-m-d G:i" }}  

    3. Set Options

    {{ form.editor_note|foundation }}
    {{ form.due|foundation }}
    {% if form.modal %} {% include "admin/elements/confirm_modal.html" with modal=form.modal form_id="copyediting_assignment" %} {% endif %} {% endblock body %} {% block js %} {% if form.modal %} {% include "admin/elements/open_modal.html" with target=form.modal.id %} {% endif %} {% include "elements/datatables.html" with target="#copyeditor" sort=2 order='asc' %} {% include "elements/jqte.html" %} {% endblock js %}