Mercurial > public > sg101
view gpp/templates/podcast/detail.html @ 333:0bf5a5677067
Import from future with_statement for Python 2.5 in import_old_links and podcasts scripts.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 25 Feb 2011 22:03:08 +0000 |
parents | daa2916f5b34 |
children | 9175392da056 |
line wrap: on
line source
{% extends 'podcast/base.html' %} {% load url from future %} {% block title %}Podcast: {{ podcast.title }}{% endblock %} {% block podcast-content %} <div class="breadcrumbs"> <a href="{% url 'podcast.views.index' %}">Podcast Index</a> >> {{ podcast.title }} </div> <h3>{{ podcast.pubdate|date:"F d, Y" }} • {{ podcast.title }}</h3> <h4>{{ podcast.subtitle }}</h4> {{ podcast.summary|linebreaks }} <ul> <li> <a href="{{ podcast.enclosure_url }}">Download Now ({{ ext }})</a> • {{ podcast.enclosure_length|filesizeformat }} • {{ podcast.duration }} </li> {% if alt_ext %} <li> <a href="{{ podcast.alt_enclosure_url }}">Download Now ({{ alt_ext }})</a> </li> {% endif %} </ul> {% endblock %}