bgneal@81: {% extends 'base.html' %}
bgneal@84: {% load forum_tags %}
bgneal@81: {% block title %}Forums{% endblock %}
bgneal@81: {% block content %}
bgneal@81: <h2>Forums</h2>
bgneal@81: 
bgneal@81: <div class="forum-block">
bgneal@81: {% for iter in cats %}
bgneal@81:    <h3>{{ iter.cat }}</h3>
bgneal@81:    <table class="forum-index-table">
bgneal@81:       <thead>
bgneal@81:          <tr>
bgneal@81:             <th class="forum-title">Forum</th>
bgneal@81:             <th class="forum-topics">Topics</th>
bgneal@81:             <th class="forum-posts">Posts</th>
bgneal@81:             <th class="forum-last_post">Last Post</th>
bgneal@81:          </tr>
bgneal@81:       </thead>
bgneal@81:       <tbody>
bgneal@81:          {% for forum in iter.forums %}
bgneal@94:             <tr class="{% cycle 'odd' 'even' %}">
bgneal@113:                <td>
bgneal@113:                   {% if forum.has_unread %}
bgneal@113:                   <img src="{{ MEDIA_URL }}icons/new.png" alt="New Posts" title="New Posts" class="forums-topic-icon" />
bgneal@113:                   {% endif %}
bgneal@113:                   <h4><a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a></h4>
bgneal@81:                   <p>{{ forum.description }}</p></td>
bgneal@81:                <td class="forum-topics">{{ forum.topic_count }}</td>
bgneal@81:                <td class="forum-posts">{{ forum.post_count }}</td>
bgneal@94:                <td class="forum-last_post">{% last_post_info forum.last_post MEDIA_URL %}</td>
bgneal@81:             </tr>
bgneal@81:          {% endfor %}
bgneal@81:       </tbody>
bgneal@81:    </table>
bgneal@81: {% endfor %}
bgneal@81: </div>
bgneal@81: {% endblock %}