{% extends 'base.html' %}{% load static %} {% block headtitle %}Media{% if source %} - {{ source }}{% endif %}{% endblock %} {% block content %} {% include 'infobox.html' with message=message %}
{% for m in media %}
{{ m.source }}
{{ m.name }}
{{ m.published|date:'Y-m-d' }}
{% empty %}
No media has been indexed.
{% endfor %}
{% include 'pagination.html' with pagination=sources.paginator filter=source.pk %} {% endblock %}