diff --git a/conservancy/podjango/templates/podjango/cast_detail.html b/conservancy/podjango/templates/podjango/cast_detail.html index 09453d83147b846f5dbc6e999685e178d8e03d5b..cf6edaa98a84276b1bb09050c5896586d72714da 100644 --- a/conservancy/podjango/templates/podjango/cast_detail.html +++ b/conservancy/podjango/templates/podjango/cast_detail.html @@ -4,11 +4,13 @@ {% extends "podjango/base_podcast.html" %} -{% block subtitle %}{{ object.title|striptags }} - The Corresponding Source - {% endblock %} +{% load podjango %} + +{% block subtitle %}{{ object.title|striptags }} - {{ podcast.title }} - {% endblock %} {% block content %} -

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

+

{% include 'podjango/feed_links.inc.html' %} {{ podcast.title }}

{% include 'podjango/audio_ogg_button.inc.html' %} {% include 'podjango/audio_mp3_button.inc.html' %} @@ -41,8 +43,8 @@ running time is {{ object.duration}}.

{% include "podjango/license.inc.html" %} -{% if object.tags.all %}

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

{% endif %} +{% if object.tags.all %}

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

{% endif %} -

Other episodes…

+

Other episodes…

{% endblock %}