{% extends "admin/core/base.html" %}}
{% load securitytags %}
{% load files %}
{% load static %}
{% load foundation %}
{% block title %}Article Archive{% endblock title %}
{% block title-section %}Article Archive{% endblock %}
{% block breadcrumbs %}
{{ block.super }}
Article Archive
{% endblock breadcrumbs %}
{% block body %}
Published Articles
{{ ID }} |
Title |
Published |
Identifier |
{% for article in published_articles %}
{{ article.pk }} |
{{ article.safe_title }} |
{{ article.date_published }} |
{{ article.identifier }} |
{% endfor %}
Rejected & Archived Articles
ID |
Title |
Declined |
Identifier |
{% for article in rejected_articles %}
{{ article.pk }} |
{{ article.safe_title }} |
{{ article.date_declined|default_if_none:"Archived" }} |
{{ article.identifier }} |
{% endfor %}
{% endblock body %}
{% block js %}
{% include "elements/datatables.html" with target=".article_list" %}
{% endblock %}