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

Manage Volumes

{% include "journals/_manage_link_list.html" with active="volumes" %}

Journals overview

{% for journal in journals %} {% if journal.has_volumes %} {% endif %} {% endfor %}
Journal Latest Volume Has active Volume?
{{ journal.name }} {{ journal.get_latest_volume|default_if_none:'No Volume found' }} {% if journal.get_latest_volume %} {% if journal.get_latest_volume.is_current %} {% include 'bi/check-circle-fill.html' %} Yes {% else %} {% include 'bi/exclamation-triangle-fill.html' %} 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 %} {% include 'bi/check-circle-fill.html' %} Yes {% else %} {% include 'bi/exclamation-triangle-fill.html' %} No {% endif %} Edit
{% if is_paginated %}
{% include '_pagination.html' with page_obj=page_obj %}
{% endif %}
{% endblock %}