Mercurial > public > sg101
annotate 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 |
rev | line source |
---|---|
gremmie@1 | 1 {% load comment_tags %} |
gremmie@1 | 2 {% get_comment_count for download as comment_count %} |
gremmie@1 | 3 <dt> |
bgneal@208 | 4 {{ download.title }} |
gremmie@1 | 5 </dt> |
gremmie@1 | 6 <dd> |
gremmie@1 | 7 {{ download.html|safe }} |
bgneal@208 | 8 <form action="{% url downloads-download download.id %}" method="post">{% csrf_token %} |
gremmie@1 | 9 <table> |
gremmie@1 | 10 <tr> |
gremmie@1 | 11 <th>Added By:</th> |
gremmie@1 | 12 <td><a href="{% url bio-view_profile download.user.username %}">{{ download.user.username }}</a></td> |
gremmie@1 | 13 <th>Date:</th><td>{{ download.date_added|date:"M d, Y" }}</td> |
gremmie@1 | 14 <th>Size:</th><td>{{ download.size }}</td> |
gremmie@1 | 15 </tr> |
gremmie@1 | 16 <tr> |
gremmie@1 | 17 <th>Category:</th><td>{{ download.category.title }}</td> |
bgneal@208 | 18 <th>Downloads:</th><td>{{ download.hits }}</td> |
gremmie@1 | 19 </tr> |
gremmie@1 | 20 <tr> |
gremmie@1 | 21 <th>Rating:</th><td><div class="rating" id="rating-{{ download.id }}">{{ download.average_score|floatformat }}</div></td> |
bgneal@15 | 22 <th><img src="{{ MEDIA_URL }}icons/comments.png" alt="Comments" title="Comments" /> |
bgneal@23 | 23 <a href="{% url downloads-details download.id %}">Comments</a>:</th><td>{{ comment_count }}</td> |
gremmie@1 | 24 </tr> |
bgneal@208 | 25 <tr><td><input type="submit" value="Download Now" /></td></tr> |
gremmie@1 | 26 </table> |
bgneal@208 | 27 </form> |
gremmie@1 | 28 </dd> |