{% extends "admin/index.html" %} {% load i18n thumbnail %} {% block messages %} {{ block.super }}

{% trans "Today" %}

{% for diffusion in diffusions %} {% with episode=diffusion.episode %} {% endwith %} {% endfor %}
{{ diffusion.start|time }} - {{ diffusion.end|time }} {{ episode.title }}

{% trans "Latest comments" %}

{% for comment in comments %} {% with page=comment.page %} {% endwith %} {% endfor %}
{{ page.title }} | {{ comment.nickname }}{{ comment.date }}
{{ comment.content|slice:"0:128" }}
{% endblock %}