{% extends "admin/core/base.html" %}}
{% load securitytags %}
{% load files %}
{% load static %}
{% load foundation %}
{% block title %}Rejected and Archived Articles{% endblock title %}
{% block title-section %}Rejected and Archived Articles{% endblock %}
{% block breadcrumbs %}
{{ block.super }}
Rejected and Archived Articles
{% endblock breadcrumbs %}
{% block body %}
| ID |
Title |
Rejected or Archived |
Date Rejected or Archived |
Authors |
{% for article in articles %}
| {{ article.pk }} |
{{ article.safe_title }} |
{% if article.stage == 'Archived' %}
Archived
{% else %}
Rejected
{% endif %}
|
{% if article.stage == 'Archived' %}
{% if article.date_archived %}
{{ article.date_archived|date:"Y-m-d" }}
{% else %}
No archive date recorded
{% endif %}
{% else %}
{{ article.date_declined|date:"Y-m-d" }}
{% endif %}
|
{{ article.frozen_authors }}
|
{% endfor %}
{% endblock body %}
{% block js %}
{% include "elements/datatables.html" with target=".article_list" %}
{% endblock %}