{% extends 'scipost/_personal_page_base.html' %} {% block pagetitle %}{{block.super}}: Volumes Admin{% endblock pagetitle %} {% block breadcrumb_items %} {{block.super}} Volumes Admin {% endblock %} {% block content %}

Manage Volumes

Journals overview

{% for journal in journals %} {% if journal.has_volumes %} {% endif %} {% endfor %}
Journal Latest Volume Has active Volume?
{{ journal.get_name_display }} {{ journal.get_latest_volume|default_if_none:'No Volume found' }} {% if journal.get_latest_volume %} {% if journal.get_latest_volume.is_current %} Yes {% else %} No {% endif %} {% endif %}

All Volumes

Create a new Volume {% for volume in object_list %} {% endfor %}
Volume Period Issues Active
{{ volume.in_journal }} Vol. {{ volume.number }} {{ volume.start_date }} until {{ volume.until_date }} {{ volume.issues.count }} {% if volume.is_current %} Yes {% else %} No {% endif %} Edit
{% if is_paginated %}
{% include 'partials/pagination.html' with page_obj=page_obj %}
{% endif %}
{% endblock %}