{% extends 'colleges/base.html' %} {% load scipost_extras %} {% load colleges_extras %} {% load bootstrap %} {% block headsup %} {% endblock headsup %} {% block pagetitle %}: Potential Fellowships{% endblock pagetitle %} {% block content %}
Add a Potential Fellowship

{% if view.kwargs.discipline %}

Potential Fellowships in {{ view.kwargs.discipline }}{% if view.kwargs.expertise %}, {{ view.kwargs.expertise }}{% endif %}:


{% endif %} {% for potfel in object_list %} {% empty %} {% endfor %}
Name Discipline Expertises Status
{{ 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 }}
No Potential Fellowships found
{% if is_paginated %}
{% include 'partials/pagination.html' with page_obj=page_obj %}
{% endif %}
{% endblock content %}