Mercurial > public > sg101
view gpp/templates/forums/index.html @ 87:515d1daec811
Forums: added intra-page links for posts. Added last_page variable for topic. Conditionally display reply form using last_page.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 12 Sep 2009 18:45:35 +0000 |
parents | 9e5e52556d5b |
children | 806399f3b950 |
line wrap: on
line source
{% extends 'base.html' %} {% load forum_tags %} {% block title %}Forums{% endblock %} {% block content %} <h2>Forums</h2> <div class="forum-block"> {% for iter in cats %} <h3>{{ iter.cat }}</h3> <table class="forum-index-table"> <thead> <tr> <th class="forum-title">Forum</th> <th class="forum-topics">Topics</th> <th class="forum-posts">Posts</th> <th class="forum-last_post">Last Post</th> </tr> </thead> <tbody> {% for forum in iter.forums %} <tr> <td><h4><a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a></h4> <p>{{ forum.description }}</p></td> <td class="forum-topics">{{ forum.topic_count }}</td> <td class="forum-posts">{{ forum.post_count }}</td> <td class="forum-last_post">{% last_post_info forum.last_post %}</td> </tr> {% endfor %} </tbody> </table> {% endfor %} </div> {% endblock %}