| {% trans "Order" %} | {% trans "Name" %} | {% trans "Email" %} | {% if journal_settings.general.use_credit %}CRediT roles | {% endif %}{% trans 'ORCID' %} | {% trans "Affiliation" %} |
|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ author.full_name|se_can_see_pii:article }} |
{% if author.email %}
{% if any_editor or author.display_email or request.user == article.owner %}
{% comment %}
Only display emails to non-editors
if they are OK to display.
It's fine to display all emails to submitting authors.
{% endcomment %}
{{ author.email|se_can_see_pii:article }}
{% if any_editor %}
{% if author.display_email %}
{% trans "Public" %}
{% else %}
{% trans "Hidden" %}
{% endif %}
{% endif %}
{% if author.is_correspondence_author %}
{% trans "Correspondence" %}
{% endif %}
{% endif %}
{% if not article.is_unsubmitted and can_see_pii and any_editor and author.author %}
{% endif %}
{% else %}
--
{% endif %}
|
{% if journal_settings.general.use_credit %}
{% for credit in author.credits %} {{ credit }}{% if not forloop.last %}, {% endif %} {% empty %} -- {% endfor %} | {% endif %}{% if can_see_pii %} {% include "admin/elements/orcid_display.html" %} {% else %} {% trans '[Anonymised data]' %} {% endif %} | {% if author.primary_affiliation %} {% if can_see_pii %} {% include "admin/core/affiliation_display.html" with affiliation=author.primary_affiliation %} {% else %} {% trans '[Anonymised data]' %} {% endif %} {% else %} -- {% endif %} |