comparison gpp/templates/podcast/index.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'podcast/base.html' %}
2 {% block title %}Podcast{% endblock %}
3 {% block podcast-content %}
4 {% if channel and channel.item_set %}
5 <h3>Podcast Index</h3>
6 <ul>
7 {% for item in channel.item_set.all %}
8 <li><a href="{{ item.get_absolute_url }}">{{ item.title }}</a> &bull;
9 {{ item.subtitle }} &bull; {{ item.pubdate|date:"F d, Y" }}</li>
10 {% endfor %}
11 </ul>
12 {% else %}
13 <p>No podcasts available at this time.</a>
14 {% endif %}
15 {% endblock %}