annotate gpp/templates/downloads/index.html @ 260:3a4bbf9c2cce

Fixing #107. Apparently some signal handlers were getting connected twice (double import?) and thus saving a forum post would cause 2 email notifications to go out to the post topic's subscribers. Use the dispatch_uid parameter in the connect call to work around this issue.
author Brian Neal <bgneal@gmail.com>
date Wed, 22 Sep 2010 00:24:59 +0000
parents 27bee3ac85e6
children daa2916f5b34
rev   line source
gremmie@1 1 {% extends 'base.html' %}
gremmie@1 2 {% load downloads_tags %}
gremmie@1 3 {% block title %}Downloads{% endblock %}
gremmie@1 4 {% block custom_css %}
gremmie@1 5 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/downloads.css" />
gremmie@1 6 {% endblock %}
gremmie@1 7 {% block content %}
gremmie@1 8 <h2>Downloads</h2>
bgneal@241 9 {% include 'downloads/navigation.html' %}
gremmie@1 10 <h3>Categories</h3>
gremmie@1 11 {% if categories %}
gremmie@1 12 <p>We have {{ total_dls }} download{{ total_dls|pluralize }} in {{ categories.count }} categories.</p>
gremmie@1 13 <dl>
gremmie@1 14 {% for category in categories %}
gremmie@1 15 <dt>
bgneal@241 16 <a href="{% url downloads-category slug=category.slug sort="title" %}">{{ category.title }}</a>
bgneal@192 17 ({{ category.count }})
gremmie@1 18 </dt>
gremmie@1 19 <dd><p>{{ category.description }}</p></dd>
gremmie@1 20 {% endfor %}
gremmie@1 21 </dl>
gremmie@1 22 {% endif %}
gremmie@1 23 {% endblock %}