Mercurial > public > sg101
diff gpp/templates/downloads/download.html @ 208:2022c0409296
Fix #76; use POST to get downloads to avoid having side-effects (updating hit count) on GETs.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 05 May 2010 03:12:15 +0000 |
parents | a5f27f25fa52 |
children | daa2916f5b34 |
line wrap: on
line diff
--- a/gpp/templates/downloads/download.html Mon May 03 02:59:48 2010 +0000 +++ b/gpp/templates/downloads/download.html Wed May 05 03:12:15 2010 +0000 @@ -1,10 +1,11 @@ {% load comment_tags %} {% get_comment_count for download as comment_count %} <dt> -<a href="{% url downloads-download download.id %}">{{ download.title }}</a> +{{ download.title }} </dt> <dd> {{ download.html|safe }} +<form action="{% url downloads-download download.id %}" method="post">{% csrf_token %} <table> <tr> <th>Added By:</th> @@ -14,12 +15,14 @@ </tr> <tr> <th>Category:</th><td>{{ download.category.title }}</td> - <th>Hits:</th><td>{{ download.hits }}</td> + <th>Downloads:</th><td>{{ download.hits }}</td> </tr> <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> </tr> +<tr><td><input type="submit" value="Download Now" /></td></tr> </table> +</form> </dd>