{% extends "cms/publication.html" %} {% load i18n %} {% block content_extras %} {% with tracks=page.tracks.all %} {% if tracks %} {% trans "Playlist" %} {% for track in tracks %} {{ track.artist }} {{ track.title }} {% if track.info %} {{ track.info }}{% endif %} {% endfor %} {% endif %} {% endwith %} {% trans "Dates of diffusion" %} {% with diffusion=page.diffusion %} {{ diffusion.date|date:"l d F Y, H:i" }} {% for diffusion in diffusion.diffusion_set.all %} {{ diffusion.date|date:"l d F Y, H:i" }} {% endfor %} {% endwith %} {% with podcasts=self.get_podcasts %} {% if podcasts %} {% trans "Podcasts" %} {% include 'cms/snippets/player.html' %} {% for item in podcasts %} {% if item.embed %} {{ item.embed|safe }} {% endif %} {% endfor %} {% endif %} {% endwith %} {% endblock %}
{% for item in podcasts %} {% if item.embed %} {{ item.embed|safe }} {% endif %} {% endfor %}