annotate gpp/templates/downloads/download.html @ 429:d0f0800eef0c

Making the jquery tabbed version of the messages app the current version and removing the old. Also figured out how to dynamically update the base template's count of unread messages when messages are read.
author Brian Neal <bgneal@gmail.com>
date Tue, 03 May 2011 02:56:58 +0000
parents f469261d617b
children 3c48a555298d
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 }}
gremmie@1 9 <table>
gremmie@1 10 <tr>
gremmie@1 11 <th>Added By:</th>
bgneal@310 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@312 22 <th><img src="{{ STATIC_URL }}icons/comments.png" alt="Comments" title="Comments" />
bgneal@310 23 <a href="{% url 'downloads-details' download.id %}">Comments</a>:</th><td>{{ comment_count }}</td>
gremmie@1 24 </tr>
gremmie@1 25 </table>
bgneal@404 26 <div id="link-{{ download.id }}"><button type="button" class="dl-button" id="dl-{{ download.id }}">Download</button></div>
bgneal@406 27 <br />
gremmie@1 28 </dd>