bgneal@310: {% load url from future %} gremmie@1: {% load comment_tags %} bgneal@492: {% load bio_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 }} gremmie@1: <table> gremmie@1: <tr> gremmie@1: <th>Added By:</th> bgneal@492: <td>{% profile_link download.user.username %}</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> gremmie@1: </table> bgneal@404: <div id="link-{{ download.id }}"><button type="button" class="dl-button" id="dl-{{ download.id }}">Download</button></div> bgneal@406: <br /> gremmie@1: </dd>