{% extends "base.html" %} {% load forum_tags %} {% block title %}Forums{% endblock %} {% block content %}

Forums

{% for category in categories %} {% if user|is_in_group_for_category:category %} {% if user|can_see_category:category %}
{% for forum in category.forum_set.all %} {% endfor %}

{% endif %} {% endif %} {% endfor %}
{% endblock %}