annotate gpp/templates/forums/index.html @ 227:423c39ee44e0

Rework the who's online middleware and template tag for #87.
author Brian Neal <bgneal@gmail.com>
date Tue, 06 Jul 2010 03:02:20 +0000
parents 6f14970b103a
children 5ee9422ce83c
rev   line source
bgneal@81 1 {% extends 'base.html' %}
bgneal@164 2 {% load cache %}
bgneal@84 3 {% load forum_tags %}
bgneal@227 4 {% load core_tags %}
bgneal@170 5 {% block custom_head %}
bgneal@170 6 {% for feed in feeds %}
bgneal@170 7 <link rel="alternate" type="application/rss+xml" title="{{ feed.name }}" href="{{ feed.feed }}" />
bgneal@170 8 {% endfor %}
bgneal@170 9 {% endblock %}
bgneal@81 10 {% block title %}Forums{% endblock %}
bgneal@81 11 {% block content %}
bgneal@170 12 <h2>Forums <a href="/feeds/forums/"><img src="{{ MEDIA_URL }}icons/feed.png" alt="Forums Feed" title="Forums Feed" /></a></h2>
bgneal@81 13
bgneal@167 14 <form action="." method="get" id="forum-query-form">
bgneal@167 15 <select name="query">
bgneal@167 16 <option value="unread">Show topics with unread posts</option>
bgneal@167 17 <option value="mine">Show my posts</option>
bgneal@167 18 <option value="unanswered">Show unanswered posts</option>
bgneal@167 19 </select><input type="submit" value="Go" />
bgneal@167 20 </form>
bgneal@167 21
bgneal@81 22 <div class="forum-block">
bgneal@81 23 {% for iter in cats %}
bgneal@81 24 <h3>{{ iter.cat }}</h3>
bgneal@81 25 <table class="forum-index-table">
bgneal@81 26 <thead>
bgneal@81 27 <tr>
bgneal@81 28 <th class="forum-title">Forum</th>
bgneal@81 29 <th class="forum-topics">Topics</th>
bgneal@81 30 <th class="forum-posts">Posts</th>
bgneal@81 31 <th class="forum-last_post">Last Post</th>
bgneal@81 32 </tr>
bgneal@81 33 </thead>
bgneal@81 34 <tbody>
bgneal@81 35 {% for forum in iter.forums %}
bgneal@94 36 <tr class="{% cycle 'odd' 'even' %}">
bgneal@113 37 <td>
bgneal@113 38 {% if forum.has_unread %}
bgneal@113 39 <img src="{{ MEDIA_URL }}icons/new.png" alt="New Posts" title="New Posts" class="forums-topic-icon" />
bgneal@113 40 {% endif %}
bgneal@170 41 <h4><a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a>
bgneal@170 42 {% if forum.has_feed %}
bgneal@170 43 <a href="/feeds/forums/{{ forum.slug }}">
bgneal@170 44 <img src="{{ MEDIA_URL }}icons/feed.png" alt="RSS Feed" title="Feed for this forum" /></a>
bgneal@170 45 {% endif %}</h4>
bgneal@81 46 <p>{{ forum.description }}</p></td>
bgneal@81 47 <td class="forum-topics">{{ forum.topic_count }}</td>
bgneal@81 48 <td class="forum-posts">{{ forum.post_count }}</td>
bgneal@120 49 <td class="forum-last_post">{% last_post_info forum.last_post %}</td>
bgneal@81 50 </tr>
bgneal@81 51 {% endfor %}
bgneal@81 52 </tbody>
bgneal@81 53 </table>
bgneal@81 54 {% endfor %}
bgneal@164 55 {% cache 900 forum-stats-block %}
bgneal@164 56 {% forum_stats %}
bgneal@164 57 {% endcache %}
bgneal@160 58 {% whos_online %}
bgneal@120 59 <p>{% current_forum_time user %}</p>
bgneal@81 60 </div>
bgneal@81 61 {% endblock %}