Mercurial > public > sg101
annotate gpp/templates/weblinks/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 | 7e8d2dda99e3 |
children | daa2916f5b34 |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'weblinks/base.html' %} |
gremmie@1 | 2 {% block title %}Web Links{% endblock %} |
gremmie@1 | 3 {% block weblinks_content %} |
gremmie@1 | 4 <h3>Categories</h3> |
gremmie@1 | 5 {% if categories %} |
gremmie@1 | 6 <p>We have {{ total_links }} links in {{ categories.count }} categories.</p> |
gremmie@1 | 7 <dl> |
gremmie@1 | 8 {% for category in categories %} |
bgneal@242 | 9 <dt><a href="{% url weblinks-view_links slug=category.slug sort="title" %}">{{ category.title }}</a> |
bgneal@193 | 10 ({{ category.count }})</dt> |
gremmie@1 | 11 <dd><p>{{ category.description }}</p></dd> |
gremmie@1 | 12 {% endfor %} |
gremmie@1 | 13 </dl> |
gremmie@1 | 14 {% endif %} |
gremmie@1 | 15 {% endblock %} |