annotate gpp/templates/forums/index.html @ 94:806399f3b950

Forums: minor cosmetic tweaks mainly.
author Brian Neal <bgneal@gmail.com>
date Sun, 13 Sep 2009 05:01:52 +0000
parents 9e5e52556d5b
children d97ceb95ce02
rev   line source
bgneal@81 1 {% extends 'base.html' %}
bgneal@84 2 {% load forum_tags %}
bgneal@81 3 {% block title %}Forums{% endblock %}
bgneal@81 4 {% block content %}
bgneal@81 5 <h2>Forums</h2>
bgneal@81 6
bgneal@81 7 <div class="forum-block">
bgneal@81 8 {% for iter in cats %}
bgneal@81 9 <h3>{{ iter.cat }}</h3>
bgneal@81 10 <table class="forum-index-table">
bgneal@81 11 <thead>
bgneal@81 12 <tr>
bgneal@81 13 <th class="forum-title">Forum</th>
bgneal@81 14 <th class="forum-topics">Topics</th>
bgneal@81 15 <th class="forum-posts">Posts</th>
bgneal@81 16 <th class="forum-last_post">Last Post</th>
bgneal@81 17 </tr>
bgneal@81 18 </thead>
bgneal@81 19 <tbody>
bgneal@81 20 {% for forum in iter.forums %}
bgneal@94 21 <tr class="{% cycle 'odd' 'even' %}">
bgneal@81 22 <td><h4><a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a></h4>
bgneal@81 23 <p>{{ forum.description }}</p></td>
bgneal@81 24 <td class="forum-topics">{{ forum.topic_count }}</td>
bgneal@81 25 <td class="forum-posts">{{ forum.post_count }}</td>
bgneal@94 26 <td class="forum-last_post">{% last_post_info forum.last_post MEDIA_URL %}</td>
bgneal@81 27 </tr>
bgneal@81 28 {% endfor %}
bgneal@81 29 </tbody>
bgneal@81 30 </table>
bgneal@81 31 {% endfor %}
bgneal@81 32 </div>
bgneal@81 33 {% endblock %}