{% extends "admin/core/base.html" %} {% load static %} {% load securitytags %} {% load files %} {% block title %}Article Document Management{% endblock title %} {% block title-section %}Article Document Management{% endblock %} {% block title-sub %}#{{ article.pk }} / {{ article.correspondence_author.last_name }} / {{ article.safe_title }}{% endblock %} {% block body %} {% csrf_token %}
Article #{{ article.pk }} {{ article.safe_title }} Files
{% if request.user.is_admin %} {% endif %} {% for file in files %} {% can_edit_file file article as can_edit_file_flag %} {% can_view_file file as can_view_file_flag %} {% can_view_file_history file article as can_view_file_history_flag %} {% if request.user.is_admin %} {% endif %} {% endfor %}
ID Label Filename Type Uploaded Modified Download History Replace DeleteAdmin
{{ file.pk }} {% if not file.label %}No Label{% endif %}{{ file.label }} {{ file }} {% file_type article file %} {{ file.date_uploaded|date:"Y-m-d G:i" }} {{ file.last_modified|date:"Y-m-d G:i" }} {% if can_view_file_flag %}  {% endif %} {% if can_view_file_history_flag %}  {% endif %} {% if can_edit_file_flag %}  {% endif %} {% if can_edit_file_flag %}  {% endif %}  Edit

If required, you can upload new files to various sections of the workflow.

 Upload File
{% csrf_token %}  Return

 Upload File

Add a label and then upload a file. You can only upload one file type at a time.

{% if error %} {% endif %}
{% csrf_token %}

Manuscript File

Manuscript files hold the main text content of the article while it is being finalized. They are used across review, copyediting, and typesetting.

Figure/Data File

Figure files hold images that will be included in the article. Data files hold any other other content that is not an image or main text content but that will be included in the published article.

Galley File

Galleys are files that have been typeset or encoded, most often in XML, HTML, or PDF format, so that they are ready for proofing and publication.

Proofing File

Proofing files are copies of galleys that have been marked up to indicate corrections to be made in subsequent rounds of typesetting.

Source File

Source files are files created in typesetting while generating a galley. They are often in specialized file formats used by graphic design and document layout applications.

Supplementary File

Supplementary files are publication-ready pieces of content to be published alongside the article, often with their own DOIs.

{% endblock body %} {% block js %} {% include "admin/elements/datatables.html" with target="#files" %} {% endblock js %}