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
{% endif %}
{% if perms.scipost.can_manage_college_composition %}
Voting results
Voting Fellows' matching expertises are marked in green.
Agreed |
{% for fellow in potfel.in_agreement.all %}
{{ fellow }} |
{% for expertise in fellow.profile.expertises %}
{{expertise|get_specialization_code}}
{% endfor %}
|
{% empty %}
No Fellow has agreed |
{% endfor %}
Abstained |
{% for fellow in potfel.in_abstain.all %}
{{ fellow }} |
{% for expertise in fellow.profile.expertises %}
{{expertise|get_specialization_code}}
{% endfor %}
|
{% empty %}
No Fellow has abstained |
{% endfor %}
Disagreed |
{% for fellow in potfel.in_disagreement.all %}
{{ fellow }} |
{% for expertise in fellow.profile.expertises %}
{{expertise|get_specialization_code}}
{% endfor %}
|
{% empty %}
No Fellow has disagreed |
{% endfor %}
{% 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
{% endif %}