{% for category in categories.iteritems() %}
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 %}
{% if forum[0].show_moderators %}
Moderators:
{% for moderator in forum[0].moderators %}
{{ moderator.username }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
|
{{ 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 }} {% if forum[0].last_post.user_id %} by {{ forum[0].last_post.user.username }} {% else %} {{ forum[0].last_post.username }} {% endif %} {% else %} No posts {% endif %} |