Nominated by {{ nomination.nominated_by }} on {{ nomination.nominated_on|date:"Y-m-d" }}

Details
Field{{ nomination.profile.acad_field }}
Specialties {% for specialty in nomination.profile.specialties.all %}
{{ specialty.code }}
{% empty %} undefined {% endfor %}
ORCID ID {% if nomination.profile.orcid_id %} {{ nomination.profile.orcid_id }} {% else %} unknown {% endif %}
Webpage {% if nomination.profile.webpage %} {{ nomination.profile.webpage }} {% else %} unknown {% endif %}
Publications in SciPost Journals
    {% for pub in nomination.profile.publications.all %}
  • {{ pub.citation }}
  • {% empty %}
  • No Publication found
  • {% endfor %}
Affiliations {% include 'profiles/_affiliations_table.html' with profile=nomination.profile actions=False %}

{% if "edadmin" in user_roles or "active_senior_fellow" in user_roles %}
Events {% include 'colleges/_nomination_events_table.html' with nomination=nomination %}
{% endif %}
Comments
{% if nomination.nominator_comments %}
Nominator comments:
{{ nomination.nominator_comments }}
{% endif %}
{% with ongoing_round=nomination.ongoing_voting_round latest_round=nomination.voting_rounds.first %} {% if ongoing_round %}
Ongoing voting round (voting deadline: {{ ongoing_round.voting_deadline }})
{% if session_fellowship and session_fellowship in ongoing_round.eligible_to_vote.all %}

You are eligible to vote {{ include_vote_buttons }}

Please go up to the main Vote dropdown to cast your vote

{% else %}

You are not called upon to vote in this round.

{% endif %}
{% elif latest_round %}
{{ latest_round }}
{% if session_fellowship and session_fellowship in latest_round.eligible_to_vote.all %} {% include "colleges/_voting_results_box.html" with voting_round=latest_round %} {% else %}

You were not called upon to vote in this round.

{% endif %}
{% endif %} {% endwith %} {% if "edadmin" in user_roles %}
Editorial Administration

Voting rounds

{% for round in nomination.voting_rounds.all %}
{{ round }}

Eligible to vote

    {% for voter in round.eligible_to_vote.all %}
  • {{ voter }}
  • {% empty %}
  • None
  • {% endfor %}

Results

{% include "colleges/_voting_results_box.html" with voting_round=round %}
Agree
    {% for vote in round.votes.agree %}
  • {{ vote.fellow }}
  • {% empty %}
  • None
  • {% endfor %}
Abstain
    {% for vote in round.votes.abstain %}
  • {{ vote.fellow }}
  • {% empty %}
  • None
  • {% endfor %}
Disagree
    {% for vote in round.votes.disagree %}
  • {{ vote.fellow }}
  • {% empty %}
  • None
  • {% endfor %}
{% empty %}
No voting round
{% endfor %}
Decision
{% endif %}