diff gpp/templates/donations/thanks.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 58bc950c6d8b
children 2934a867c2ef
line wrap: on
line diff
--- a/gpp/templates/donations/thanks.html	Mon Jan 17 04:00:59 2011 +0000
+++ b/gpp/templates/donations/thanks.html	Thu Jan 20 04:03:48 2011 +0000
@@ -1,7 +1,8 @@
 {% extends 'base.html' %}
+{% load url from future %}
 {% block title %}Thanks For The Donation{% endblock %}
 {% block content %}
-<div class="breadcrumbs"><a href="{% url donations-index %}">Donations</a> &raquo; Thanks</div>
+<div class="breadcrumbs"><a href="{% url 'donations-index' %}">Donations</a> &raquo; Thanks</div>
 <h2>Thank-You For The Donation!</h2>
 <p>Thank-you for your donation to <strong>SurfGuitar101.com</strong>, it is greatly appreciated!</p>
 {% endblock %}