bgneal@81: {% extends 'base.html' %} bgneal@81: {% block title %}Forums{% endblock %} bgneal@81: {% block content %} bgneal@81:

Forums

bgneal@81: bgneal@81:
bgneal@81: {% for iter in cats %} bgneal@81:

{{ iter.cat }}

bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: {% for forum in iter.forums %} bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: bgneal@81: {% endfor %} bgneal@81: bgneal@81:
ForumTopicsPostsLast Post

{{ forum.name }}

bgneal@81:

{{ forum.description }}

{{ forum.topic_count }}{{ forum.post_count }} bgneal@81: {% if forum.last_post %} bgneal@81: {{ forum.last_post.update_date|date }}
bgneal@81: {{ forum.last_post.user.username }} bgneal@81: {% else %} bgneal@81: No Posts bgneal@81: {% endif %} bgneal@81:
bgneal@81: {% endfor %} bgneal@81:
bgneal@81: {% endblock %}