Mercurial > public > sg101
annotate gpp/templates/podcast/detail.html @ 143:1ed461fd2030
Podcast enhancements for #39. Provide channel level keyword support. Provide an alternate download URL so we can support both m4a and mp3 formats.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Dec 2009 21:28:31 +0000 |
parents | dbd703f7d63a |
children | 7fdfc9b3c71a |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'podcast/base.html' %} |
gremmie@1 | 2 {% block title %}Podcast: {{ podcast.title }}{% endblock %} |
gremmie@1 | 3 {% block podcast-content %} |
gremmie@1 | 4 <div class="breadcrumb"> |
gremmie@1 | 5 <a href="{% url podcast.views.index %}">Podcast Index</a> >> {{ podcast.title }} |
gremmie@1 | 6 </div> |
gremmie@1 | 7 <h3>{{ podcast.pubdate|date:"F d, Y" }} • {{ podcast.title }}</h3> |
gremmie@1 | 8 <h4>{{ podcast.subtitle }}</h4> |
gremmie@1 | 9 {{ podcast.summary|linebreaks }} |
bgneal@143 | 10 <ul> |
bgneal@143 | 11 <li> |
bgneal@143 | 12 <a href="{{ podcast.enclosure_url }}">Download Now ({{ ext }})</a> • |
bgneal@143 | 13 {{ podcast.enclosure_length|filesizeformat }} • {{ podcast.duration }} |
bgneal@143 | 14 </li> |
bgneal@143 | 15 {% if alt_ext %} |
bgneal@143 | 16 <li> |
bgneal@143 | 17 <a href="{{ podcast.alt_enclosure_url }}">Download Now ({{ alt_ext }})</a> |
bgneal@143 | 18 </li> |
bgneal@143 | 19 {% endif %} |
bgneal@143 | 20 </ul> |
gremmie@1 | 21 {% endblock %} |