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

Manage Issues

Journals overview

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

All Issues

Create a new Issue {% for issue in object_list %} {% endfor %}
Issue Period Status Publications Active
{{ issue.get_journal }} {{ issue.short_str }} {{ issue.start_date }} until {{ issue.until_date }} {{ issue.get_status_display }} {{ issue.publications.count }} {% if issue.is_current %} Yes {% else %} No {% endif %} Edit
{% if is_paginated %}
{% include 'partials/pagination.html' with page_obj=page_obj %}
{% endif %}
{% endblock %}