{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Manage Articles - {% endblock %} {% block mediacentre_active %}class="active"{% endblock %} {% block content %}
{% if articles %} {% for article in articles %} {% if article.published %} {% else %} {% endif %} {% endfor %}
Title Url Created Published
{{ article }} {% url 'media_article' article.section.slug article.slug %} {{ article.created }} Resources ({{ article.get_resources|length }})
{% else %}

There are no articles in this section.

{% endif %}

< Back to Media Centre

{% endblock %}