{% extends "podcasting/podcasting_base.html" %} {% block head_title %}Podcast Show List{% endblock %} {% block body_class %}page-show-list{% endblock %} {% block content %}

Podcast Show List

{% for show in show_list %}

{{ show.title }}

{{ show.organization }}
{% if show.image %}
{{ show.organization }} {{ show.organization|striptags }}'s logo
{% endif %}
{% if show.summary %}{{ show.summary }}{% else %}{{ show.description|striptags }}{% endif %}
{% endfor %}
{% endblock %}