Mercurial > public > sg101
view 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 |
line wrap: on
line source
{% load url from future %} {% load comment_tags %} {% get_comment_count for download as comment_count %} <dt> {{ download.title }} </dt> <dd> {{ download.html|safe }} <table> <tr> <th>Added By:</th> <td><a href="{% url 'bio-view_profile' download.user.username %}">{{ download.user.username }}</a></td> <th>Date:</th><td>{{ download.date_added|date:"M d, Y" }}</td> <th>Size:</th><td>{{ download.size }}</td> </tr> <tr> <th>Category:</th><td>{{ download.category.title }}</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="{{ STATIC_URL }}icons/comments.png" alt="Comments" title="Comments" /> <a href="{% url 'downloads-details' download.id %}">Comments</a>:</th><td>{{ comment_count }}</td> </tr> </table> <div id="link-{{ download.id }}"><button type="button" class="dl-button" id="dl-{{ download.id }}">Download</button></div> <br /> </dd>