{% extends 'submissions/admin/base.html' %} {% block breadcrumb_items %} {{ block.super }} Active Fellowships Fellowship details {% endblock %} {% block pagetitle %}: Fellowship details{% endblock pagetitle %} {% block content %}

Fellowship details

{{ fellowship }}


Details

Fellowship ID {{ fellowship.id }}
Fellow {{ fellowship }}
Discipline {{ fellowship.contributor.get_discipline_display }}
Start date {{ fellowship.start_date|default:'No start date' }}
End date {{ fellowship.until_date|default:'No end date' }}
Pool size {{ fellowship.pool.count }}
Type {{ fellowship.guest|yesno:"Guest fellowship,Regular fellowship"|safe }}
{% csrf_token %}
Edit Fellowship

All fellowships of this fellow

{% for fellowship in fellowship.sibling_fellowships %} {% endfor %}
Fellowship ID Type Date range
{{ fellowship.id }} {{ fellowship.guest|yesno:"Guest fellowship,Regular fellowship"|safe }} {% if fellowship.start_date %} from {{ fellowship.start_date }} {% endif %} {% if fellowship.until_date %} until {{ fellowship.until_date }} {% endif %} {% if not fellowship.start_date and not fellowship.until_date %} Unlimited {% endif %} See details
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 %}

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