{% extends 'admin/core/base.html' %} {% load i18n %} {% block title %}{{ request.journal.name }} Submission{% endblock %} {% block title-section %}{{ request.journal.name }} Submission{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Submission Information
  • {% endblock %} {% block css %} {% endblock %} {% block body %}
    {% if journal_settings.general.disable_journal_submission %}

    {{ journal_settings.general.disable_journal_submission_message|safe }}

    {% endif %} {{ journal_settings.general.submission_intro_text|safe }} {% if not journal_settings.general.disable_journal_submission %}
    {% if not request.user.is_authenticated %} {% trans 'Register' %} {% trans 'Login' %} {% else %} {% trans 'Start Submission' %} {% endif %} {% trans 'Contact Us' %}
    {% endif %}
    {% for item in submission_items %} {% if item.title == 'licences' %}

    {% trans 'Licences' %}

    {{ request.journal.name }} {% trans "allows the following licences for submission" %}:

    {% include "elements/license_block.html" %} {% elif item.title == 'sections' %} {% include "elements/section_block.html" %} {% elif item.get_display_text %}

    {{ item.title|capfirst }}

    {{ item.get_display_text|safe }} {% endif %}
    {% endfor %}
    {% endblock body %}