Mercurial > public > sg101
annotate gpp/templates/downloads/index.html @ 286:72fd300685d5
For #95. You can now make posts with no text in the body if you have attachments. And now if you create a new topic with an attachment, and the POST fails (say you forgot the topic title), we will now re-attach attachments. Also fixed a bug in the smiley code that would arise if it was asked to markup an empty string.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 23 Oct 2010 20:19:46 +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 %} |