{% load bootstrap %} {% load scipost_extras %} {% load user_groups %} {% load colleges_extras %} {% is_scipost_admin request.user as is_scipost_admin %} {% is_ed_admin request.user as is_ed_admin %}

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 }}

{% csrf_token %} {{ pfstatus_form|bootstrap }}
{% endif %}

Voting results

{% if perms.scipost.can_manage_college_composition %}

Voting Fellows' matching expertises are marked in green.

{% endif %}
{% voting_results_display potfel %}
{% if perms.scipost.can_manage_college_composition %}
{% for fellow in potfel.in_agreement.all %} {% empty %} {% endfor %}
Agreed
{{ fellow }} {% for specialty in fellow.profile.specialties.all %}
{{ specialty.code}}
{% endfor %}
No Fellow has agreed
{% for fellow in potfel.in_abstain.all %} {% empty %} {% endfor %}
Abstained
{{ fellow }} {% for specialty in fellow.profile.specialties.all %}
{{ specialty.code }}
{% endfor %}
No Fellow has abstained
{% for fellow in potfel.in_disagreement.all %} {% empty %} {% endfor %}
Disagreed
{{ fellow }} {% for specialty in fellow.profile.specialties.all %}
{{ specialty.code }}
{% endfor %}
No Fellow has disagreed
{% endif %}

Events

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

Add an event for this Potential Fellowship

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