view gpp/templates/podcast/detail.html @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +0000
parents dbd703f7d63a
children 1ed461fd2030
line wrap: on
line source
{% extends 'podcast/base.html' %}
{% block title %}Podcast: {{ podcast.title }}{% endblock %}
{% block podcast-content %}
<div class="breadcrumb">
   <a href="{% url podcast.views.index %}">Podcast Index</a> &gt;&gt; {{ podcast.title }}
</div>
<h3>{{ podcast.pubdate|date:"F d, Y" }} &bull; {{ podcast.title }}</h3>
<h4>{{ podcast.subtitle }}</h4>
{{ podcast.summary|linebreaks }}
<p><a href="{{ podcast.enclosure_url }}">Download Now</a> &bull;
{{ podcast.enclosure_length|filesizeformat }} &bull; {{ podcast.duration }}</p>
{% endblock %}