{% extends 'colleges/base.html' %}
{% load user_groups %}
{% block breadcrumb_items %}
{{ block.super }}
Colleges
Fellowships
Fellowship details
{% endblock %}
{% block pagetitle %}
: Fellowship details
{% endblock pagetitle %}
{% block content %}
{% is_ed_admin request.user as is_ed_admin %}
Fellowship details
{{ fellowship }}
Details
Fellowship ID |
{{ fellowship.id }} |
Fellow |
{{ fellowship.contributor }}
|
{% if "edadmin" in user_roles %}
Primary email |
{{ fellowship.contributor.profile.email }}
|
{% endif %}
Academic field |
{{ fellowship.contributor.profile.acad_field }} |
Start date |
{{ fellowship.start_date|default:'No start date' }}
|
End date |
{{ fellowship.until_date|default:'No end date' }}
|
Pool size |
{{ fellowship.pool.count }} |
Type |
{% if fellowship.guest %}
Guest
{% elif fellowship.senior %}
Senior
{% else %}
Regular
{% endif %}
|
Update this Fellowship
[hint: to terminate it, just set the until_date to today]
{% if is_ed_admin %}
{% endif %}
All fellowships of this fellow
Fellowship ID |
Type |
Date range |
{% for fship in fellowship.sibling_fellowships %}
{{ fship.id }} |
{% if fship.guest %}
Guest
{% elif fship.senior %}
Senior
{% else %}
Regular
{% endif %}
|
{% if fship.start_date %}from {{ fship.start_date }}{% endif %}
{% if fship.until_date %}until {{ fship.until_date }}{% endif %}
{% if not fship.start_date and not fship.until_date %}Unlimited{% endif %}
|
{% if fship.id != fellowship.id %}
See details
{% else %}
(this page)
{% endif %}
|
{% endfor %}
Add new Fellowship for {{ fellowship.contributor }}
{% if fellowship.guest %}
Proceedings this Guest Fellowship is assigned to
{% endif %}
Assignments
{% if "edadmin" in user_roles or "active_senior_fellow" in user_roles %}
Workload indicator
{% include "icons/reception.html" with value=fellowship.contributor.editorial_assignments.ongoing.count max=4 %}
{% endif %}
{% if is_ed_admin %}
Pool for this Fellowship
{% endif %}
{% endblock %}