{% 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 {% for fellow in fellowships.regular %} {% empty %} {% endfor %}
Fellow Discipline Start date End date
{{ fellow.contributor }} {{ fellow.contributor.get_discipline_display }} {{ fellow.start_date|default:'No start date' }} {{ fellow.until_date|default:'No end date' }} View Fellowship details
There are no active fellowships!

Active Guest Fellowships

Add new Guest Fellowship {% for fellow in fellowships.guests %} {% empty %} {% endfor %}
Fellow Discipline Start date End date
{{ fellow.contributor }} {{ fellow.contributor.get_discipline_display }} {{ fellow.start_date|default:'No start date' }} {{ fellow.until_date|default:'No end date' }} View Fellowship details
There are no active guests fellowships
{% endblock %}