{% extends "base.html" %} {% load paniktags staticfiles soundfiles thumbnail %} {% block title %}{{ episode.title }} - {{ episode.emission.title }} {% endblock %} {% block head %} {% if episode.image %} {% elif episode.emission.image %} {% else %} {% endif %} {% if episode.subtitle %} {% else %} {% endif %} {% if episode.main_sound %} {% endif %} {% endblock %} {% block main %}
{% thumbnail emission.image "400x400" crop="50% 50%" as im %} {% endthumbnail %}
{{emission.title}}
{% thumbnail episode.image "400x400" crop="50% 50%" as im %} {% endthumbnail %}
{{episode.title}}
{% if episode.subtitle %}

{{ episode.subtitle }}

{% endif %}
{{ episode.text|safe}}
{% if episode.main_sound %}
{% audio sound=episode.main_sound %}
{% endif %} {% if soundfiles.count %}

Fragments sonores

    {% for soundfile in soundfiles %}
  • {{ soundfile.title }} {% audio sound=soundfile %}
  • {% endfor %}
{% endif %}
{% endblock %}