{% 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 %}
    {% for article in published_articles %} {% endfor %}
    {{ ID }} Title Published Identifier Authors
    {{ article.pk }} {{ article.safe_title }} {{ article.date_published }} {{ article.preferred_identifier }} {{ article.frozen_authors }}
    {% endblock body %} {% block js %} {% include "elements/datatables.html" with target=".article_list" %} {% endblock %}