{% extends "base.html" %} {% load tapeforms %} {% block title %}Liste des podcasts{% endblock %} {% block content %}

Les podcasts {% if request.GET.tag %}"{{ request.GET.tag }}" {% endif %}{% if radio_show %}de {{radio_show}}{% endif %}

Filtres
{% formfield filter.form.radio_show %}
{% for tag in tags %} {{ tag }} {% endfor %}
{% if not podcast_list %}
Aucun podcast trouvé !
{% else %} {% for podcast in podcast_list %}
{% include "./podcast_item.html" %}
{% endfor %} {% endif %}
{% include "wagtailwebradio/inc/pagination.html" %} {% endblock %}