annotate gpp/templates/downloads/download_list.html @ 348:d1b11096595b

Fix #168; when nailing a spammer, clear their profile text fields. Guard against topics and forums that don't exist when deleting posts in the signal handler. Make the forum stats template tag only display the latest active users.
author Brian Neal <bgneal@gmail.com>
date Wed, 02 Mar 2011 02:18:28 +0000
parents 88b2b9cb8c1f
children 41411066b16d
rev   line source
gremmie@1 1 {% extends 'base.html' %}
bgneal@310 2 {% load url from future %}
gremmie@1 3 {% load downloads_tags %}
gremmie@1 4 {% block title %}Downloads: {{ category.title }}{% endblock %}
gremmie@1 5 {% block custom_css %}
bgneal@312 6 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/downloads.css" />
bgneal@312 7 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/tab-nav.css" />
bgneal@312 8 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" />
gremmie@1 9 {% endblock %}
gremmie@1 10 {% block custom_js %}
bgneal@312 11 <script type="text/javascript" src="{{ STATIC_URL }}js/rating.js"></script>
gremmie@1 12 {% endblock %}
gremmie@1 13 {% block content %}
gremmie@1 14 <h2>Downloads</h2>
bgneal@241 15 {% include 'downloads/navigation.html' %}
gremmie@1 16 <h3>Category: {{ category.title }}</h3>
gremmie@1 17
gremmie@1 18 {% if page.object_list %}
gremmie@1 19 <ul class="tab-nav">
bgneal@310 20 <li><a href="{% url 'downloads-category' slug=category.slug sort="title" %}"
gremmie@1 21 {% ifequal s "title" %}class="active" {% endifequal %}>Title</a></li>
bgneal@310 22 <li><a href="{% url 'downloads-category' slug=category.slug sort="date" %}"
gremmie@1 23 {% ifequal s "date" %}class="active"{% endifequal %}>Date</a></li>
bgneal@310 24 <li><a href="{% url 'downloads-category' slug=category.slug sort="rating" %}"
gremmie@1 25 {% ifequal s "rating" %}class="active"{% endifequal %}>Rating</a></li>
bgneal@310 26 <li><a href="{% url 'downloads-category' slug=category.slug sort="hits" %}"
gremmie@1 27 {% ifequal s "hits" %}class="active"{% endifequal %}>Hits</a></li>
gremmie@1 28 </ul>
gremmie@1 29
gremmie@1 30 {% include 'core/pagination.html' %}
gremmie@1 31
gremmie@1 32 <dl>
gremmie@1 33 {% for download in page.object_list %}
gremmie@1 34 {% include 'downloads/download.html' %}
gremmie@1 35 {% endfor %}
gremmie@1 36 </dl>
gremmie@1 37
gremmie@1 38 {% include 'core/pagination.html' %}
gremmie@1 39 {% else %}
gremmie@1 40 <p>No downloads in this category at this time.</p>
gremmie@1 41 {% endif %}
gremmie@1 42 {% endblock %}