diff gpp/templates/shoutbox/missing_shout.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 f9a9b4014d5b
children
line wrap: on
line diff
--- a/gpp/templates/shoutbox/missing_shout.html	Mon Jan 17 04:00:59 2011 +0000
+++ b/gpp/templates/shoutbox/missing_shout.html	Thu Jan 20 04:03:48 2011 +0000
@@ -1,7 +1,8 @@
 {% extends 'base.html' %}
+{% load url from future %}
 {% block title %}Shout Not Found{% endblock %}
 {% block content %}
-<div class="breadcrumbs"><a href="{% url shoutbox-history %}">Shoutbox History</a> &raquo; Shout Not Found</div>
+<div class="breadcrumbs"><a href="{% url 'shoutbox-history' %}">Shoutbox History</a> &raquo; Shout Not Found</div>
 <h2>Shout Not Found</h2>
 <p>We're sorry, it looks like that shout no longer exists.</p>
 {% endblock %}