view gpp/templates/downloads/download.html @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +0000
parents a5f27f25fa52
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>