Mercurial > public > sg101
annotate gpp/templates/podcast/index.html @ 569:3fe2eced1be7
Now developing on Ubuntu 12.04 with Python 2.7.
Use symbolic links for media, so add media/banners to .hgignore.
I had a syntax error in banner_tags.py that only Python 2.7 caught.
For local development, read database name from SECRETS.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 29 Apr 2012 16:00:01 -0500 |
parents | dbd703f7d63a |
children |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'podcast/base.html' %} |
gremmie@1 | 2 {% block title %}Podcast{% endblock %} |
gremmie@1 | 3 {% block podcast-content %} |
gremmie@1 | 4 {% if channel and channel.item_set %} |
gremmie@1 | 5 <h3>Podcast Index</h3> |
gremmie@1 | 6 <ul> |
gremmie@1 | 7 {% for item in channel.item_set.all %} |
gremmie@1 | 8 <li><a href="{{ item.get_absolute_url }}">{{ item.title }}</a> • |
gremmie@1 | 9 {{ item.subtitle }} • {{ item.pubdate|date:"F d, Y" }}</li> |
gremmie@1 | 10 {% endfor %} |
gremmie@1 | 11 </ul> |
gremmie@1 | 12 {% else %} |
gremmie@1 | 13 <p>No podcasts available at this time.</a> |
gremmie@1 | 14 {% endif %} |
gremmie@1 | 15 {% endblock %} |