view gpp/templates/downloads/download.html @ 271:4746df47a538

Follow on to last rev (r292) for #126. Missed updating a shoutbox template. Also the repoze.timeago package uses UTC time by default. Change this to local time for now until we decide to switch over to UTC for everything.
author Brian Neal <bgneal@gmail.com>
date Sun, 26 Sep 2010 17:42:00 +0000
parents 2022c0409296
children daa2916f5b34
line wrap: on
line source
{% load comment_tags %}
{% get_comment_count for download as comment_count %}
<dt>
{{ download.title }}
</dt>
<dd>
{{ download.html|safe }}
<form action="{% url downloads-download download.id %}" method="post">{% csrf_token %}
<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="{{ MEDIA_URL }}icons/comments.png" alt="Comments" title="Comments" />
       <a href="{% url downloads-details download.id %}">Comments</a>:</th><td>{{ comment_count }}</td>
</tr>
<tr><td><input type="submit" value="Download Now" /></td></tr>
</table>
</form>
</dd>