{% extends "layout.html" %} {% block content %} {% for category in category.iteritems() %} {% for forum in category[1] %} {% endfor %}
{{ category[0].title }}
Forum Topics Posts Last Post
{% if forum[0]|forum_is_unread(forum[1], current_user) %} {% else %} {% endif %} {{ forum[0].title }}
{% autoescape false %} {{ forum[0].description|markup }} {% endautoescape %}
{{ forum[0].topic_count }} {{ forum[0].post_count }} {% if forum[0].last_post_id %} {{ forum[0].last_post.topic.title|crop_title }}
{{ forum[0].last_post.date_created|time_since }}
by {{ forum[0].last_post.user.username }} {% else %} No posts {% endif %}
{% endfor %} {% endblock %}