{% extends "admin/index.html" %} {% load i18n thumbnail aircox %} {% block app %}

{% translate "Today" %}

{% if diffusions %}
{% for obj in diffusions %} {% page_widget "card" obj.episode diffusion=obj timetable=True admin=True tag_class="small" %} {% endfor %}
{% else %}
{% trans "No diffusion is scheduled for today." %}
{% endif %}

{% translate "Latest comments" %}

{% if comments %} {% for object in comments|slice:":5" %} {% page_widget "item" object with_title=True %} {% endfor %} {% else %}

{% trans "No comment posted yet" %}

{% endif %}

{% translate "Latest publications" %}

{% if latests %} {% include "aircox/widgets/page_list.html" with object_list=latests no_actions=True %} {% endif %}

{% translate "Administration" %}

{% include "admin/app_list.html" with app_list=app_list show_changelinks=True %}
{% endblock %}