Mercurial > public > sg101
comparison 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 |
comparison
equal
deleted
inserted
replaced
142:f6904149a233 | 143:1ed461fd2030 |
---|---|
5 <a href="{% url podcast.views.index %}">Podcast Index</a> >> {{ podcast.title }} | 5 <a href="{% url podcast.views.index %}">Podcast Index</a> >> {{ podcast.title }} |
6 </div> | 6 </div> |
7 <h3>{{ podcast.pubdate|date:"F d, Y" }} • {{ podcast.title }}</h3> | 7 <h3>{{ podcast.pubdate|date:"F d, Y" }} • {{ podcast.title }}</h3> |
8 <h4>{{ podcast.subtitle }}</h4> | 8 <h4>{{ podcast.subtitle }}</h4> |
9 {{ podcast.summary|linebreaks }} | 9 {{ podcast.summary|linebreaks }} |
10 <p><a href="{{ podcast.enclosure_url }}">Download Now</a> • | 10 <ul> |
11 {{ podcast.enclosure_length|filesizeformat }} • {{ podcast.duration }}</p> | 11 <li> |
12 <a href="{{ podcast.enclosure_url }}">Download Now ({{ ext }})</a> • | |
13 {{ podcast.enclosure_length|filesizeformat }} • {{ podcast.duration }} | |
14 </li> | |
15 {% if alt_ext %} | |
16 <li> | |
17 <a href="{{ podcast.alt_enclosure_url }}">Download Now ({{ alt_ext }})</a> | |
18 </li> | |
19 {% endif %} | |
20 </ul> | |
12 {% endblock %} | 21 {% endblock %} |