{% extends 'colleges/base.html' %} {% block breadcrumb_items %} {{ block.super }} Colleges Fellowships Fellowship details {% endblock %} {% block pagetitle %}: Fellowship details{% endblock pagetitle %} {% block content %}

Fellowship details

{{ fellowship }}


Details

{% if "edadmin" in user_roles %} {% endif %}
Fellowship ID {{ fellowship.id }}
Fellow {{ fellowship.contributor }}
Primary email {{ fellowship.contributor.profile.email }}
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]

All fellowships of this fellow

{% for fship in fellowship.sibling_fellowships %} {% endfor %}
Fellowship ID Type Date range
{{ 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 %}
Add new Fellowship for {{ fellowship.contributor }}
{% if fellowship.guest %}

Proceedings this Guest Fellowship is assigned to

{% for proceedings in fellowship.proceedings.all %} {% endfor %}
Event Issue Submissions Open Submissions Deadline Submissions Close
{{ proceedings.event_name }} {{ proceedings.issue }} {{ proceedings.submissions_open }} {{ proceedings.submissions_deadline }} {{ proceedings.submissions_close }} Remove Proceedings
Add Proceedings to Guest Fellowship
{% endif %}

Assignments

Ongoing:

Completed

Pool for this Fellowship

{% for submission in fellowship.pool.all %} {% endfor %}
Submission Status
{{ submission.preprint.identifier_w_vn_nr }}, {{ submission.title|truncatechars:50 }} {{ submission.get_status_display }} {% if submission.editor_in_charge == fellowship.contributor %} Fellow is Editor-in-charge {% else %} Remove from this Fellowship's pool {% endif %}
Add Submission to this Fellowship's pool
{% endblock %}