{% extends "admin/core/base.html" %}
{% load securitytags %}
{% load files %}
{% load static %}
{% load foundation %}
{% block title %}Published Articles{% endblock title %}
{% block title-section %}Published Articles{% endblock %}
{% block breadcrumbs %}
{{ block.super }}
Published Articles
{% endblock breadcrumbs %}
{% block body %}
| {{ ID }} |
Title |
Published |
Identifier |
Authors |
{% for article in published_articles %}
| {{ article.pk }} |
{{ article.safe_title }} |
{{ article.date_published }} |
{{ article.preferred_identifier }}
|
{{ article.frozen_authors }}
|
{% endfor %}
{% endblock body %}
{% block js %}
{% include "elements/datatables.html" with target=".article_list" %}
{% endblock %}