{% extends "admin/core/base.html" %} {% load static %} {% load i18n %} {% block title-section %}{% trans "Upload files" %}{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Submit an Article
  • {% endblock %} {% block body %}
    {% if error %}

    **{{ error }}**

    {% endif %} {% csrf_token %}
    {% include "admin/elements/forms/messages_in_callout.html" with form=data_form %} {{ journal_settings.general.file_submission_guidelines|safe }}

    {{ request.journal.submissionconfiguration.submission_file_text }}

    {% csrf_token %}  {% trans "Upload" %}
    {% csrf_token %} {% for file in article.manuscript_files.all %} {% empty %} {% endfor %}
    {% trans "Label" %} {% trans "File Name" %}
    {{ file.label }} {{ file }}
    {% trans "No files uploaded" %}
    {% if request.journal.submissionconfiguration.figures_data %}

    {% trans 'Figures and Data Files' %}

    {% csrf_token %} {% for file in article.data_figure_files.all %} {% empty %} {% endfor %}
    {% trans "Label" %} {% trans "File Name" %}
    {{ file.label }} {{ file }}
    {% trans "No files uploaded" %}
    {% endif %}
    {% csrf_token %}
    {% include "admin/elements/submit/file.html" with modaltype="manuscript" form=ms_form instructions=journal_settings.general.manuscript_file_submission_instructions|safe %} {% include "admin/elements/submit/file.html" with modaltype="data" form=data_form instructions=journal_settings.general.data_figure_file_submission_instructions|safe %} {% endblock body %} {% block js %} {% if modal %} {% include "admin/elements/open_modal.html" with target=modal %} {% endif %} {% endblock %} {% block toastr %} {% comment %} Avoid showing the messages via Toastr since they should be included at the top of the form. {% endcomment %} {% endblock toastr %}