gremmie@1: {% extends 'podcast/base.html' %} gremmie@1: {% block title %}Podcast{% endblock %} gremmie@1: {% block podcast-content %} gremmie@1: {% if channel and channel.item_set %} gremmie@1: <h3>Podcast Index</h3> gremmie@1: <ul> gremmie@1: {% for item in channel.item_set.all %} gremmie@1: <li><a href="{{ item.get_absolute_url }}">{{ item.title }}</a> • gremmie@1: {{ item.subtitle }} • {{ item.pubdate|date:"F d, Y" }}</li> gremmie@1: {% endfor %} gremmie@1: </ul> gremmie@1: {% else %} gremmie@1: <p>No podcasts available at this time.</a> gremmie@1: {% endif %} gremmie@1: {% endblock %}