bgneal@310: {% load url from future %}
gremmie@1: {% load comment_tags %}
gremmie@1: {% get_comment_count for download as comment_count %}
gremmie@1: <dt>
bgneal@208: {{ download.title }}
gremmie@1: </dt>
gremmie@1: <dd>
gremmie@1: {{ download.html|safe }}
bgneal@310: <form action="{% url 'downloads-download' download.id %}" method="post">{% csrf_token %}
gremmie@1: <table>
gremmie@1: <tr>
gremmie@1:     <th>Added By:</th>
bgneal@310:         <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>
bgneal@208:     <th>Downloads:</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@312:     <th><img src="{{ STATIC_URL }}icons/comments.png" alt="Comments" title="Comments" />
bgneal@310:        <a href="{% url 'downloads-details' download.id %}">Comments</a>:</th><td>{{ comment_count }}</td>
gremmie@1: </tr>
bgneal@208: <tr><td><input type="submit" value="Download Now" /></td></tr>
gremmie@1: </table>
bgneal@208: </form>
gremmie@1: </dd>