{% extends "base.html" %} {% load static from staticfiles %} {% load util_tags %} {% load humanize %} {% block page_name %} Forums - {% endblock %} {% block content %}
{% for category in categories %} {% for forum in forums_by_category|get_item:category.pk %} {% endfor %} {% endfor %}
New Forum Threads Posts
{{ category.name }}
{% if forum.is_unread %} Unread posts {% else %} No new posts {% endif %}
{% if forum.member_view_only and not user.is_authenticated %}
Register to view: {{ forum.name }}
{% else %} {{ forum.name }} {% endif %} {{ forum.description }}
{{ forum.get_thread_count|intcomma }} {{ forum.get_post_count|intcomma }}
{% endblock %}