gremmie@1: {% load comment_tags %}
gremmie@1: {% get_comment_count for download as comment_count %}
gremmie@1: <dt>
gremmie@1: <a href="{% url downloads-download download.id %}">{{ download.title }}</a>
gremmie@1: </dt>
gremmie@1: <dd>
gremmie@1: {{ download.html|safe }}
gremmie@1: <table>
gremmie@1: <tr>
gremmie@1:     <th>Added By:</th>
gremmie@1:         <td><a href="{% url bio-view_profile download.user.username %}">{{ download.user.username }}</a></td>
gremmie@1:     <th>Date:</th><td>{{ download.date_added|date:"M d, Y" }}</td>
gremmie@1:     <th>Size:</th><td>{{ download.size }}</td>
gremmie@1: </tr>
gremmie@1: <tr>
gremmie@1:     <th>Category:</th><td>{{ download.category.title }}</td>
gremmie@1:     <th>Hits:</th><td>{{ download.hits }}</td>
gremmie@1: </tr>
gremmie@1: <tr>
gremmie@1:     <th>Rating:</th><td><div class="rating" id="rating-{{ download.id }}">{{ download.average_score|floatformat }}</div></td>
bgneal@15:     <th><img src="{{ MEDIA_URL }}icons/comments.png" alt="Comments" title="Comments" />
bgneal@23:        <a href="{% url downloads-details download.id %}">Comments</a>:</th><td>{{ comment_count }}</td>
gremmie@1: </tr>
gremmie@1: </table>
gremmie@1: </dd>