{% extends "base.html" %} {% load paniktags staticfiles i18n thumbnail %} {% block bodyID %}Emissions{% endblock %} {% block title %}{{ emission.title }}{% endblock %} {% block head %} {% if emission.image %} {% else %} {% endif %} {% if emission.subtitle %} {% else %} {% endif %} {% endblock %} {% block toptitle %} {% endblock %} {% block main %}
{% thumbnail emission.image "400x400" crop="50% 50%" as im %} {% endthumbnail %}
{{emission.title}}
{% if schedules %} {% endif %}
{{ emission.text|safe}}
{% for episode in all_episodes %}
{% thumbnail episode.image "400x400" crop="50% 50%" as im %} {% endthumbnail %}
{% if schedules|length > 1 %} {{ episode.first_diffusion|date:"l" }} {% endif %} {{ episode.first_diffusion|date:"H:i" }}
{{ episode.title }}
{% endfor %}
Revenir sur la page d'accueil {% endblock %}