view gpp/templates/downloads/download.html @ 552:9e42e6618168

For bitbucket issue #2, tweak the admin settings for the Post model to reduce slow queries. Define our own queryset() method so we can control the select_related(), and not have it cascade from post to topics to forums to categories. Removed 'topic' from list_display because MySQL still sucked with 2 inner joins. Now it seems to be tolerable with only one join to User.
author Brian Neal <bgneal@gmail.com>
date Wed, 25 Jan 2012 20:07:03 -0600
parents 3c48a555298d
children
line wrap: on
line source
{% load url from future %}
{% load comment_tags %}
{% load bio_tags %}
{% get_comment_count for download as comment_count %}
<dt>
{{ download.title }}
</dt>
<dd>
{{ download.html|safe }}
<table>
<tr>
    <th>Added By:</th>
        <td>{% profile_link download.user.username %}</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="{{ STATIC_URL }}icons/comments.png" alt="Comments" title="Comments" />
       <a href="{% url 'downloads-details' download.id %}">Comments</a>:</th><td>{{ comment_count }}</td>
</tr>
</table>
<div id="link-{{ download.id }}"><button type="button" class="dl-button" id="dl-{{ download.id }}">Download</button></div>
<br />
</dd>