Mercurial > public > sg101
annotate gpp/templates/downloads/download.html @ 339:b871892264f2
Adding the sg101 IRC bot code to SVN. This code is pretty rough and needs love, but it gets the job done (one of my first Python apps). This fixes #150.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 26 Feb 2011 21:27:49 +0000 |
parents | 88b2b9cb8c1f |
children | 41411066b16d |
rev | line source |
---|---|
bgneal@310 | 1 {% load url from future %} |
gremmie@1 | 2 {% load comment_tags %} |
gremmie@1 | 3 {% get_comment_count for download as comment_count %} |
gremmie@1 | 4 <dt> |
bgneal@208 | 5 {{ download.title }} |
gremmie@1 | 6 </dt> |
gremmie@1 | 7 <dd> |
gremmie@1 | 8 {{ download.html|safe }} |
bgneal@310 | 9 <form action="{% url 'downloads-download' download.id %}" method="post">{% csrf_token %} |
gremmie@1 | 10 <table> |
gremmie@1 | 11 <tr> |
gremmie@1 | 12 <th>Added By:</th> |
bgneal@310 | 13 <td><a href="{% url 'bio-view_profile' download.user.username %}">{{ download.user.username }}</a></td> |
gremmie@1 | 14 <th>Date:</th><td>{{ download.date_added|date:"M d, Y" }}</td> |
gremmie@1 | 15 <th>Size:</th><td>{{ download.size }}</td> |
gremmie@1 | 16 </tr> |
gremmie@1 | 17 <tr> |
gremmie@1 | 18 <th>Category:</th><td>{{ download.category.title }}</td> |
bgneal@208 | 19 <th>Downloads:</th><td>{{ download.hits }}</td> |
gremmie@1 | 20 </tr> |
gremmie@1 | 21 <tr> |
gremmie@1 | 22 <th>Rating:</th><td><div class="rating" id="rating-{{ download.id }}">{{ download.average_score|floatformat }}</div></td> |
bgneal@312 | 23 <th><img src="{{ STATIC_URL }}icons/comments.png" alt="Comments" title="Comments" /> |
bgneal@310 | 24 <a href="{% url 'downloads-details' download.id %}">Comments</a>:</th><td>{{ comment_count }}</td> |
gremmie@1 | 25 </tr> |
bgneal@208 | 26 <tr><td><input type="submit" value="Download Now" /></td></tr> |
gremmie@1 | 27 </table> |
bgneal@208 | 28 </form> |
gremmie@1 | 29 </dd> |