Files @ cf359b6a6485
Branch filter:

Location: website/www/podjango/templates/podjango/cast/cast_detail.html

bsturmfels
Rename cast to "The Corresponding Source", move to URL prefix "/cast/"

Also improved detail view rendering where unclosed <ul> tags in the body
content HTML from the database were affecting the display of footer info.
<!-- FIXME: SFLC specific content -->
<!--  Copyright (C) 2008       Bradley M. Kuhn <bkuhn@ebb.org> -->
<!-- Permission is granted to copy, modify, redistribute, propagate, -->
<!-- and/or convey this template in any form. -->
{% extends "podjango/base_podcast.html" %}

{% block subtitle %}{{ object.title|striptags }} - The Corresponding Source  - {% endblock %}

{% block content %}

<h1>{% include 'podjango/feed_links.inc.html' %} The Corresponding Source</h1>

<h2><a class="feedlink" href="{{ object.ogg_path }}">{% include 'podjango/audio_ogg_button.inc.html' %}</a>
<a class="feedlink" href="{{ object.mp3_path }}">{% include 'podjango/audio_mp3_button.inc.html' %}</a>
{{ object.title|safe }}</h2>

<p class="date">{{ object.pub_date|date:"j F Y" }}</p>

<h3>Download</h3>

<p>
<a href="{{ object.ogg_path }}" class="document_format">ogg</a><a href="{{ object.mp3_path }}"  class="document_format">mp3</a>
</p>

<h3>Summary</h3>

{{ object.summary|safe }}

<p>
This show was released on {{ object.pub_date|date:"l j F Y" }}; its
running time is {{ object.duration}}.</p>

<h3>Show Notes</h3>
<div>
  {{ object.body|safe }}
</div>

<h3>Feedback</h3>
<p>Send feedback and comments on the oggcast
to <a href="mailto:oggcast@faif.us">&lt;oggcast@faif.us&gt;</a>.
You can keep in touch on our IRC channel, #faif on irc.freenode.net, and
by <a href="http://identi.ca/faif">following @faif on identi.ca</a>.</p>

{% if object.tags.all %}<p class="blog-tags">Tags: {% for tag in object.tags.all %}<a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</p>{% endif %}

<p><span class="continued"><a href="{% url 'podjango:cast' %}">Other FaiF oggcasts&hellip;</a></span></p>

{% endblock %}