{% extends "admin/core/base.html" %} {% load static %} {% load i18n %} {% block title-section %}{% trans "Author Information" %}{% endblock %} {% block css %} {% endblock %} {% block body %}
{% csrf_token %} {% include "submission/timeline.html" with data=article %}

{% trans "Search for Existing Authors" %}

{% csrf_token %}

{% trans "Search for a user using email address or ORCiD. If a user is matched, they will be automatically added as an author. This search only returns exact matches." %}

{% trans 'Add Authors' %}

{% if not user in article.authors.all %}

{% trans "By default, your account is the owner of this submission, but is not an Author on record. You can add yourself using the button below." %}

{% trans "Add Self as Author" %} {% endif %}

{% trans "If you cannot find the author record by searching, and you are not the only author, you can add one by clicking the button below. This will open a popup modal for you to complete their details." %}

{% trans "Add New Author" %} {% include "admin/elements/submit/author.html" %}

{% trans 'Current Authors' %}

{% trans 'Drag and drop an author to re-order them.' %}

{% for order in article.articleauthororder_set.all %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Email" %}
{{ order.author.full_name }} {{ order.author.email }}  
{% trans "No authors yet, add one!" %}

{% csrf_token %}

{% trans "You are required to select a main author, this author will receive the communications regarding your articles process through our systems. This does not have to be you." %}


{% endblock body %} {% block js %} {% if modal %} {% include "admin/elements/open_modal.html" with target=modal %} {% endif %} {% endblock %}