view gpp/templates/downloads/download.html @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +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>