{% extends "admin/core/base.html" %}} {% load securitytags %} {% load files %} {% load static %} {% load foundation %} {% block title %}Publication Schedule{% endblock title %} {% block title-section %}Publication Schedule{% endblock %} {% block title-sub %}Lists articles that are marked as published but with dates set in the future.{% endblock %} {% block breadcrumbs %} {{ block.super }} {% endblock breadcrumbs %} {% block body %}

Articles Ready for Publication

{% for article in articles %} {% empty %} {% endfor %}
Title Section DOI Date Set for Publication
{{ article.safe_title }} {{ article.section.name }} {{ article.get_doi }} {{ article.date_published|date:"Y-m-d H:i" }}
No articles are set for publication in the future
{% endblock body %}