diff --git a/www/podjango/templates/podjango/cast/cast_list.html b/www/podjango/templates/podjango/cast/cast_list.html new file mode 100644 index 0000000000000000000000000000000000000000..2b6c46834ac8b35369e5cbbcc873b344d37d3f5c --- /dev/null +++ b/www/podjango/templates/podjango/cast/cast_list.html @@ -0,0 +1,62 @@ + + + + +{% extends "podjango/base_podcast.html" %} + +{% block subtitle %}Free as in Freedom - {% endblock %} + +{% block content %} + +

[Ogg/Vorbis Audio RSS] +[MP3 Audio RSS] +Free as in Freedom

+ +{% 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 %} +
+

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

+

+[Get cast in Ogg/Vorbis
+                                          format] +[Get cast in MP3 format] + +{{ object.title|safe }}

+

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 %}