{% extends "admin/core/base.html" %} {% load static %} {% load i18n %} {% load next_url %} {% load foundation %} {% load text %} {% block title-section %} {% trans "Author Information" %} {% endblock %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Submit an Article" %}
  • {% trans "Author information" %}
  • {% endblock %} {% block body %} {% include "elements/current_authors.html" %}

    {% trans "Add more authors" %}

    {% if request.user not in article.author_accounts %}
    {% csrf_token %}

    {% trans "Are you an author?" %}

    {% endif %}

    {% blocktrans with journal=request.journal.name press=request.press.name %} Some authors may already be registered in {{ journal }}, {{ press }}, or the ORCID registry(opens in new tab). You can check by searching for their email or ORCID. If a match is found, they will be added to the author list. {% endblocktrans %}

    {% csrf_token %}

    {% blocktrans %} If you cannot find the author in the search, you can add them manually. {% endblocktrans %}

    {% csrf_token %}
    {% include "admin/elements/forms/field.html" with field=new_author_form.first_name %} {% include "admin/elements/forms/field.html" with field=new_author_form.middle_name %} {% include "admin/elements/forms/field.html" with field=new_author_form.last_name %}
    {% include "admin/elements/forms/field.html" with field=new_author_form.name_prefix %} {% include "admin/elements/forms/field.html" with field=new_author_form.name_suffix %} {% include "admin/elements/forms/field.html" with field=new_author_form.is_corporate %}
    {% include "admin/elements/forms/field.html" with field=new_author_form.frozen_email %} {% include "admin/elements/forms/field.html" with field=new_author_form.display_email %}

    {% trans "Proceed to next step" %}

    {% blocktrans %} Is the author information complete? {% endblocktrans %}

    {% csrf_token %}
    {% endblock body %} {% block toastr %} {% comment %} Avoid showing the messages via Toastr since they should be included at the top of the form. {% endcomment %} {% endblock toastr %}