{% extends 'series/series_base.html' %} {% load bootstrap %} {% load automarkup %} {% load user_groups %} {% block breadcrumb_items %} {{ block.super }} {{ collection.series.name }} {{ collection.name }} {% endblock %} {% block meta_description %} {{ block.super }} Collection detail {{ collection.series.name }} {{ collection.name }} {% endblock meta_description %} {% block pagetitle %} : Collection detail {% endblock pagetitle %} {% block content %} {% is_ed_admin request.user as is_ed_admin %}

{{ collection.series.name }}

{% if collection.series.is_uniquely_contained %} {% with collection.series.container_journals.first as journal %} a series contained in {{ journal.name }} {% endwith %} {% endif %}

Collection {{ collection.name }}

{% automarkup collection.description %}
{% if collection.event_start_date and collection.event_end_date %}

Dates: from {{ collection.event_start_date }} to {{ collection.event_end_date }}.

{% endif %} {% if collection.image %}
image
{% endif %}
{% if is_ed_admin %}

Editorial Administration

Expected authors for this Collection
Expected editors for this Collection
Publications
{% endif %} {% if collection_submissions|length > 0 %}

Submissions to this Collection

{% regroup collection_submissions|dictsort:'status' by status as submissions_by_status %} {% for submission_group in submissions_by_status %}

{{ submission_group.list.0.get_status_display }}

{% endfor %}
{% endif %}

Publications in this Collection

{% endblock content %} {% block footer_script %}{{ expected_author_form.media }}{% endblock %}