Mercurial > public > sg101
view gpp/templates/weblinks/index.html @ 459:9d3bd7304050
Fixing #221. Also combined all permissions checks into a new module, permissions.py. This allows us to cache user, category, and forum groups information since it rarely changes.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 02 Jul 2011 23:35:45 +0000 |
parents | daa2916f5b34 |
children |
line wrap: on
line source
{% extends 'weblinks/base.html' %} {% load url from future %} {% 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' slug=category.slug sort="title" %}">{{ category.title }}</a> ({{ category.count }})</dt> <dd><p>{{ category.description }}</p></dd> {% endfor %} </dl> {% endif %} {% endblock %}