{% load bootstrap %} {% load scipost_extras %}

Potential Fellowship details for {{ potfel }}

{% include 'profiles/_profile_card.html' with profile=potfel.profile %}
{% if perms.scipost.can_manage_college_composition %}

Admin actions

Update the status of this Potential Fellowship

{% csrf_token %} {{ pfstatus_form|bootstrap }}
{% endif %} {% if perms.scipost.can_manage_college_composition %}

Voting results

Voting Fellows' matching expertises are marked in green.

{% for fellow in potfel.in_agreement.all %} {% empty %} {% endfor %}
Agreed
{{ fellow }} {% for expertise in fellow.profile.expertises %}
{{expertise|get_specialization_code}}
{% endfor %}
No Fellow has agreed
{% for fellow in potfel.in_abstain.all %} {% empty %} {% endfor %}
Abstained
{{ fellow }} {% for expertise in fellow.profile.expertises %}
{{expertise|get_specialization_code}}
{% endfor %}
No Fellow has abstained
{% for fellow in potfel.in_disagreement.all %} {% empty %} {% endfor %}
Disagreed
{{ fellow }} {% for expertise in fellow.profile.expertises %}
{{expertise|get_specialization_code}}
{% endfor %}
No Fellow has disagreed
{% endif %} {% if perms.scipost.can_manage_college_composition %}

Events

    {% for event in potfel.potentialfellowshipevent_set.all %} {% include 'colleges/_potentialfellowship_event_li.html' with event=event %} {% empty %}
  • No events found.
  • {% endfor %}

Add an event for this Potential Fellowship

{% csrf_token %} {{ pfevent_form|bootstrap }}
{% endif %}