{% 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

{% 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]

{% if is_ed_admin %} {% endif %}

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 }}
{% include "pins/_hx_notes_list.html" with object=fellowship %}
{% 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

{% if "edadmin" in user_roles or "active_senior_fellow" in user_roles %}
Workload indicator {% include "icons/reception.html" with value=ongoing_assignment_submissions.count max=4 %}
{% endif %}

Ongoing:

Completed

{% if is_ed_admin %}

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 {% elif submission.status == "in_voting" and fellowship.contributor in submission.recommendation.contributors_voted %} Fellow has voted in the recommendation {% else %} Remove from this Fellowship's pool {% endif %}
Add Submission to this Fellowship's pool
{% endif %} {% endblock %}