{% load bootstrap %} {% load scipost_extras %} {% load user_groups %} {% is_ed_admin request.user as is_ed_admin %} {% is_scipost_admin request.user as is_scipost_admin %}
Title: {{ profile.get_title_display }}
First name: {{ profile.first_name }}
Last name: {{ profile.last_name }}
Email(s) {% for profile_mail in profile.emails.all %} {{ profile_mail.email }} {{ profile_mail.primary|yesno:'Primary,Alternative' }} {% if profile_mail.still_valid %} {% include 'bi/check-circle-fill.html' %} {% else %} {% include 'bi/x-circle-fill.html' %} {% endif %}
{% endfor %}
Field {{ profile.acad_field }}
Specialties {% for specialty in profile.specialties.all %}
{{ specialty.code }}
{% endfor %}
ORCID ID {{ profile.orcid_id }}
Webpage {{ profile.webpage|default:'-' }}
Username {{ profile.contributor.user.username }}
Date joined {{ profile.contributor.user.date_joined }}
Last login {{ profile.contributor.user.last_login }}
Status {{ profile.contributor.get_status_display }}
User active? {{ profile.contributor.user.is_active }}

Affiliations

{% include 'profiles/_affiliations_table.html' %}

SciPost interactions

Publications {{ profile.publications.count }}
Submissions {{ profile.contributor.submissions.count }}
Comments {{ profile.comments.count }}
Theses {{ profile.theses.count }}
Fellowships {{ profile.contributor.fellowships.count }}
Potential Fellowships {{ profile.potentialfellowship_set.count }}
Refereeing invitations {{ profile.referee_invitations.count }}
{% comment %} {% if is_scipost_admin or is_ed_admin %}

Admin-level info

Registration invitations
    {% for reginv in profile.registrationinvitation_set.all %}
  • {{ reginv }}
    status: {{ reginv.get_status_display }}
  • {% empty %}
  • No invitation found
  • {% endfor %}
Fellowships and Potential Fellowships
Fellowships
    {% for fellowship in profile.fellowships.all %}
  • {{ fellowship }}
  • {% empty %}
  • No fellowships found
  • {% endfor %}
Potential Fellowships
    {% for potfellowship in profile.potentialfellowship_set.all %}
  • {{ potfellowship }}
  • {% empty %}
  • No Potential Fellowships found
  • {% endfor %}
Refereeing invitations
    {% for inv in profile.referee_invitations.all %}
  • {{ inv.submission.title }}
    (invited {{ inv.date_invited }}; fulfilled: {% if inv.fulfilled %}{% include 'bi/check-square-fill.html' %}{% else %}{% include 'bi/x-circle-fill.html' %}{% endif %})
  • {% empty %}
  • No refereeing invitation found
  • {% endfor %}
Actions
  • Update this Profile
  • Delete this Profile
  • {% if email_form %}
  • Add an email to this Profile:
    {% csrf_token %} {{ email_form|bootstrap }}
  • {% endif %}
{% endif %} {% endcomment %}