Mercurial > public > sg101
view gpp/templates/weblinks/index.html @ 194:6a5549c2efb5
Implement #62, add support for CSRF protection.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 03 Apr 2010 20:00:56 +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 %}