{% extends 'scipost/_personal_page_base.html' %} {% block meta_description %}{{ block.super }} Issues{% endblock meta_description %} {% 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.name }} {{ journal.get_latest_issue|default_if_none:'No Issue found' }} {% if journal.get_latest_issue %} {% if journal.get_latest_issue.is_current %} {% include 'bi/check-circle-fill.html' %} Yes {% else %} {% include 'bi/exclamation-triangle-fill.html' %} 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 %} {% 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 %}