diff gpp/templates/shoutbox/shout_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 e1d1a70d312d
children 88b2b9cb8c1f
line wrap: on
line diff
--- a/gpp/templates/shoutbox/shout_detail.html	Mon Jan 17 04:00:59 2011 +0000
+++ b/gpp/templates/shoutbox/shout_detail.html	Thu Jan 20 04:03:48 2011 +0000
@@ -1,15 +1,16 @@
+{% load url from future %}
 {% load avatar_tags %}
 <tr>
 <th>
-<a href="{% url bio-view_profile username=shout.user.username %}">{% avatar shout.user %}</a>
-<a href="{% url bio-view_profile username=shout.user.username %}">{{ shout.user.username }}</a>
+<a href="{% url 'bio-view_profile' username=shout.user.username %}">{% avatar shout.user %}</a>
+<a href="{% url 'bio-view_profile' username=shout.user.username %}">{{ shout.user.username }}</a>
 </th>
 <td>
 <div {% ifequal user.id shout.user.id %}class="edit" id="shout-{{ shout.id }}"{% endifequal %}>{{ shout.html|safe }}</div>
 </div>
 <br />
 <span class="date">{{ shout.shout_date|date:"D M d Y H:i:s" }}</span><br />
-<a href="{% url shoutbox-view shout.id %}"><img src="{{ MEDIA_URL }}icons/link.png" alt="Permalink" title="Permalink" /></a>
+<a href="{% url 'shoutbox-view' shout.id %}"><img src="{{ MEDIA_URL }}icons/link.png" alt="Permalink" title="Permalink" /></a>
 <a href="#" class="shout-flag" id="shout-flag-{{ shout.id }}"><img src="{{ MEDIA_URL }}icons/flag_red.png" alt="Flag"
    title="Flag this shout as offensive" /></a>
 {% ifequal user.id shout.user.id %}