{% extends "fretboard/base.html" %}{% load cache typogrify_tags %} {% block content %}

{{ FORUM_BASE_NAME }}

{% cache 600 forum-cat-list 12 %} {% regroup forums by category as cat_list %}
{% for cat in cat_list %}

{{ cat.grouper }}

{% for forum in cat.list %}
{{ forum.name }}
{{ forum.description|typogrify }}
{% endfor %}
{% endfor %}
{% endcache %} {% endblock %}