comparison gpp/templates/weblinks/index.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children fa7d82bfb100
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'weblinks/base.html' %}
2 {% block title %}Web Links{% endblock %}
3 {% block weblinks_content %}
4 <h3>Categories</h3>
5 {% if categories %}
6 <p>We have {{ total_links }} links in {{ categories.count }} categories.</p>
7 <dl>
8 {% for category in categories %}
9 <dt><a href="{% url weblinks-view_links category=category.id,sort="title",page=1 %}">{{ category.title }}</a>
10 ({{ category.num_links}})</dt>
11 <dd><p>{{ category.description }}</p></dd>
12 {% endfor %}
13 </dl>
14 {% endif %}
15 {% endblock %}