diff gpp/templates/podcast/detail.html @ 310:daa2916f5b34

Fixing 145; New url tag behavior (forwards compatibility) in Django 1.3.
author Brian Neal <bgneal@gmail.com>
date Thu, 20 Jan 2011 04:03:48 +0000
parents 7fdfc9b3c71a
children 9175392da056
line wrap: on
line diff
--- a/gpp/templates/podcast/detail.html	Mon Jan 17 04:00:59 2011 +0000
+++ b/gpp/templates/podcast/detail.html	Thu Jan 20 04:03:48 2011 +0000
@@ -1,8 +1,9 @@
 {% extends 'podcast/base.html' %}
+{% load url from future %}
 {% block title %}Podcast: {{ podcast.title }}{% endblock %}
 {% block podcast-content %}
 <div class="breadcrumbs">
-   <a href="{% url podcast.views.index %}">Podcast Index</a> &gt;&gt; {{ podcast.title }}
+   <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>