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 data
- Delete this Potential Fellowship
- For named or elected: prepare and send initial email
{% if not potfel.profile.contributor %}
- N.B.: this potential Fellow is not yet registered as a Contributor
{% else %}
- Accepted to serve as Fellow but not currently active in a College? Set up a Fellowship
{% endif %}
Update the status of this Potential Fellowship
Current status: {{ potfel.get_status_display }}
{% endif %}
{% if perms.scipost.can_manage_college_composition %}
Voting results
Voting Fellows' matching expertises are marked in green.
{% voting_results_display potfel %}
Agreed |
{% for fellow in potfel.in_agreement.all %}
{{ fellow }} |
{% for specialty in fellow.profile.specialties.all %}
{{ specialty.code}}
{% endfor %}
|
{% empty %}
No Fellow has agreed |
{% endfor %}
Abstained |
{% for fellow in potfel.in_abstain.all %}
{{ fellow }} |
{% for specialty in fellow.profile.specialties.all %}
{{ specialty.code }}
{% endfor %}
|
{% empty %}
No Fellow has abstained |
{% endfor %}
Disagreed |
{% for fellow in potfel.in_disagreement.all %}
{{ fellow }} |
{% for specialty in fellow.profile.specialties.all %}
{{ specialty.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 %}