Mercurial > public > sg101
diff gpp/templates/downloads/download.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 | 2022c0409296 |
children | 88b2b9cb8c1f |
line wrap: on
line diff
--- a/gpp/templates/downloads/download.html Mon Jan 17 04:00:59 2011 +0000 +++ b/gpp/templates/downloads/download.html Thu Jan 20 04:03:48 2011 +0000 @@ -1,3 +1,4 @@ +{% load url from future %} {% load comment_tags %} {% get_comment_count for download as comment_count %} <dt> @@ -5,11 +6,11 @@ </dt> <dd> {{ download.html|safe }} -<form action="{% url downloads-download download.id %}" method="post">{% csrf_token %} +<form action="{% url 'downloads-download' download.id %}" method="post">{% csrf_token %} <table> <tr> <th>Added By:</th> - <td><a href="{% url bio-view_profile download.user.username %}">{{ download.user.username }}</a></td> + <td><a href="{% url 'bio-view_profile' download.user.username %}">{{ download.user.username }}</a></td> <th>Date:</th><td>{{ download.date_added|date:"M d, Y" }}</td> <th>Size:</th><td>{{ download.size }}</td> </tr> @@ -20,7 +21,7 @@ <tr> <th>Rating:</th><td><div class="rating" id="rating-{{ download.id }}">{{ download.average_score|floatformat }}</div></td> <th><img src="{{ MEDIA_URL }}icons/comments.png" alt="Comments" title="Comments" /> - <a href="{% url downloads-details download.id %}">Comments</a>:</th><td>{{ comment_count }}</td> + <a href="{% url 'downloads-details' download.id %}">Comments</a>:</th><td>{{ comment_count }}</td> </tr> <tr><td><input type="submit" value="Download Now" /></td></tr> </table>