Mercurial > public > sg101
view gpp/templates/podcast/detail.html @ 297:69498a43e636
Fixing #137; added a 'time-ago' timestamp to the template tags that display the latest web links and downloads.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 09 Jan 2011 21:16:08 +0000 |
parents | 7fdfc9b3c71a |
children | daa2916f5b34 |
line wrap: on
line source
{% extends 'podcast/base.html' %} {% 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 %}