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

{% translate "Today" %}

{% if diffusions %} {% for diffusion in diffusions %} {% with episode=diffusion.episode %} {% endwith %} {% endfor %}
{{ diffusion.start|time }} - {{ diffusion.end|time }} {{ episode.title }}   {% if diffusion.type == diffusion.TYPE_ON_AIR %} {% if diffusion.is_live %} {% else %} {% endif %}   {{ diffusion.get_type_display }} {% elif diffusion.type == diffusion.TYPE_CANCEL %} {{ diffusion.get_type_display }} {% elif diffusion.type == diffusion.TYPE_UNCONFIRMED %} {{ diffusion.get_type_display }} {% endif %}
{% else %}
{% trans "No diffusion is scheduled for today." %}
{% endif %}

{% translate "Latest comments" %}

{% if comments %} {% include "aircox/widgets/page_list.html" with object_list=comments with_title=True %} {% 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 %}