diff --git a/conservancy/podjango/templates/podjango/cast/cast_list.html b/conservancy/podjango/templates/podjango/cast/cast_list.html new file mode 100644 index 0000000000000000000000000000000000000000..c15e0b720c1e871fa13cf1a6705c239f8bea6977 --- /dev/null +++ b/conservancy/podjango/templates/podjango/cast/cast_list.html @@ -0,0 +1,56 @@ + + + + +{% extends "podjango/base_podcast.html" %} + +{% block subtitle %}The Corresponding Source - {% endblock %} + +{% block content %} + +

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

+ +{% if tags %} +

Displaying casts +tagged {% for tag in tags %}{% if not forloop.last %}{% if not forloop.first %}, {% endif %}{% endif %}{{ tag.label }}{% ifequal forloop.revcounter 2 %} or {% endifequal %}{% endfor %} +

+{% endif %} + +{% for object in object_list %} +
+

+{% include 'podjango/audio_ogg_button.inc.html' %} +{% include 'podjango/audio_mp3_button.inc.html' %} + +{{ object.title|safe }}

+

{{ object.pub_date|date:"F j, Y" }}

+

Summary

+ + {{ object.summary|safe }} + +

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

+

Show Notes

+
+ {{ object.body|safe }} +
+ + {% if object.tags.all %}

Tags: {% for tag in object.tags.all %}{{ tag.label }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %} +
+{% endfor %} + +

+{% if has_next %}Next page (older) »{% endif %} +{% if has_previous %}« Previous page (newer){% endif %} +

+
+ +{% if date_list %} +

Index by date

+ +{% endif %} + +{% endblock %}