{% extends "podcast/base.html" %} {% load i18n %} {% block allcontent %}

{% trans "A list of shows" %}

{% block content %} {% for show in object_list %}

{{ show.title }}

{{ show.organization }}

{% if show.image %}
{{ show.organization }} show logo
{% endif %}

{% if show.summary %}{{ show.summary }}{% else %}{{ show.description|striptags }}{% endif %}

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