{% extends 'colleges/base.html' %} {% load bootstrap %} {% load scipost_extras %} {% load colleges_extras %} {% load staticfiles %} {% block headsup %} {% endblock headsup %} {% block breadcrumb_items %} {{ block.super }} Colleges Potential Fellowships {% endblock %} {% block pagetitle %}: Potential Fellowships{% endblock pagetitle %} {% block content %}

Potential Fellowships

{% if perms.scipost.can_add_potentialfellowship %}

Nominations

Do you know somebody qualified who could serve as a Fellow?
Nominate them by adding a Potential Fellowship.

{% if potfels_to_vote_on or potfels_voted_on %}

Ongoing elections

{% if potfels_to_vote_on %}

Nominations to vote on:

{% include 'colleges/_potentialfellowship_voting_table.html' with potfels_list=potfels_to_vote_on %}
{% endif %} {% if potfels_voted_on %}

Nominations you have already voted on (you can revise your vote if you wish):

{% include 'colleges/_potentialfellowship_voting_table.html' with potfels_list=potfels_voted_on %}
{% endif %}
{% endif %} {% endif %}

List of potential Fellowships

View all
View by discipline/subject area:
{% if view.kwargs.discipline or request.GET.status %}

Potential Fellowships {% if view.kwargs.discipline %}in {{ view.kwargs.discipline }}{% if view.kwargs.expertise %}, {{ view.kwargs.expertise }}{% endif %}{% endif %}{% if request.GET.status %} with status {{ request.GET.status }}{% endif %}:


{% endif %} {% for potfel in object_list %} {% empty %} {% endfor %}
Name Discipline Expertises Status Latest event
{{ potfel.profile.last_name }}, {{ potfel.profile.get_title_display }} {{ potfel.profile.first_name }} {{ potfel.profile.get_discipline_display }} {% for expertise in potfel.profile.expertises %}
{{ expertise|get_specialization_code }}
{% endfor %}
{{ potfel.get_status_display }}
{% voting_results_display potfel %}
{{ potfel.latest_event_details }}
No Potential Fellowships found
{% if is_paginated %}
{% include 'partials/pagination.html' with page_obj=page_obj %}
{% endif %}
{% endblock content %}