{% extends "base.html" %} {% load wagtailimages_tags %} {% block title %}Liste des émissions{% endblock %} {% block content %}

Les Émissions

{% if not radioshow_list %}
Il n'y a aucune émissions !
{% else %}
{% for radioshow in radioshow_list %}
{% if radioshow.picture %} {% image radioshow.picture fill-380x80 %} {% else %} {% image settings.core.displaysettings.radioshow_default_picture fill-380x80 %} {% endif %}
{{ radioshow.title }}

{{ radioshow.description|safe|truncatechars_html:175 }}

{% endfor %}
{% endif %} {% endblock %}