{% extends 'submissions/admin/base.html' %}
{% block breadcrumb_items %}
{{ block.super }}
Active Fellowships
{% endblock %}
{% block pagetitle %}: Active Fellowships{% endblock pagetitle %}
{% block content %}
Active Regular Fellowships
Add new Fellowship
Fellow |
Discipline |
Start date |
End date |
|
{% for fellow in fellowships.regular %}
{{ fellow.contributor }} |
{{ fellow.contributor.get_discipline_display }} |
{{ fellow.start_date|default:'No start date' }} |
{{ fellow.until_date|default:'No end date' }} |
View Fellowship details
|
{% empty %}
There are no active fellowships! |
{% endfor %}
Active Guest Fellowships
Add new Guest Fellowship
Fellow |
Discipline |
Start date |
End date |
|
{% for fellow in fellowships.guests %}
{{ fellow.contributor }} |
{{ fellow.contributor.get_discipline_display }} |
{{ fellow.start_date|default:'No start date' }} |
{{ fellow.until_date|default:'No end date' }} |
View Fellowship details
|
{% empty %}
There are no active guests fellowships |
{% endfor %}
{% endblock %}