Mercurial > public > sg101
view gpp/templates/weblinks/index.html @ 196:893b6d462cf9
Closing #70 with this commit and the previous on. Incorportating Ken Dushane's design for the site.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 07 Apr 2010 01:59:09 +0000 |
parents | fa7d82bfb100 |
children | 2baadae33f2e |
line wrap: on
line source
{% extends 'weblinks/base.html' %} {% block title %}Web Links{% endblock %} {% block weblinks_content %} <h3>Categories</h3> {% if categories %} <p>We have {{ total_links }} links in {{ categories.count }} categories.</p> <dl> {% for category in categories %} <dt><a href="{% url weblinks-view_links category=category.id,sort="title",page=1 %}">{{ category.title }}</a> ({{ category.count }})</dt> <dd><p>{{ category.description }}</p></dd> {% endfor %} </dl> {% endif %} {% endblock %}