view gpp/templates/downloads/download.html @ 23:a5f27f25fa52

Added a latest_downloads template tag. Made the comments view the details view for a download. Changed get_absolute_url to point to this new view.
author Brian Neal <bgneal@gmail.com>
date Sun, 19 Apr 2009 21:16:59 +0000
parents 32b1ca8e2940
children 2022c0409296
line wrap: on
line source
{% load comment_tags %}
{% get_comment_count for download as comment_count %}
<dt>
<a href="{% url downloads-download download.id %}">{{ download.title }}</a>
</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>Hits:</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="{{ MEDIA_URL }}icons/comments.png" alt="Comments" title="Comments" />
       <a href="{% url downloads-details download.id %}">Comments</a>:</th><td>{{ comment_count }}</td>
</tr>
</table>
</dd>