Mercurial > public > sg101
annotate gpp/templates/downloads/download.html @ 46:0140ff687d49
Membermap bug: in the signal handler, if the user isn't on the map, just bail out.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 20 Jun 2009 03:23:54 +0000 |
parents | a5f27f25fa52 |
children | 2022c0409296 |
rev | line source |
---|---|
gremmie@1 | 1 {% load comment_tags %} |
gremmie@1 | 2 {% get_comment_count for download as comment_count %} |
gremmie@1 | 3 <dt> |
gremmie@1 | 4 <a href="{% url downloads-download download.id %}">{{ download.title }}</a> |
gremmie@1 | 5 </dt> |
gremmie@1 | 6 <dd> |
gremmie@1 | 7 {{ download.html|safe }} |
gremmie@1 | 8 <table> |
gremmie@1 | 9 <tr> |
gremmie@1 | 10 <th>Added By:</th> |
gremmie@1 | 11 <td><a href="{% url bio-view_profile download.user.username %}">{{ download.user.username }}</a></td> |
gremmie@1 | 12 <th>Date:</th><td>{{ download.date_added|date:"M d, Y" }}</td> |
gremmie@1 | 13 <th>Size:</th><td>{{ download.size }}</td> |
gremmie@1 | 14 </tr> |
gremmie@1 | 15 <tr> |
gremmie@1 | 16 <th>Category:</th><td>{{ download.category.title }}</td> |
gremmie@1 | 17 <th>Hits:</th><td>{{ download.hits }}</td> |
gremmie@1 | 18 </tr> |
gremmie@1 | 19 <tr> |
gremmie@1 | 20 <th>Rating:</th><td><div class="rating" id="rating-{{ download.id }}">{{ download.average_score|floatformat }}</div></td> |
bgneal@15 | 21 <th><img src="{{ MEDIA_URL }}icons/comments.png" alt="Comments" title="Comments" /> |
bgneal@23 | 22 <a href="{% url downloads-details download.id %}">Comments</a>:</th><td>{{ comment_count }}</td> |
gremmie@1 | 23 </tr> |
gremmie@1 | 24 </table> |
gremmie@1 | 25 </dd> |