Mercurial > public > sg101
comparison gpp/templates/forums/index.html @ 374:dd673fae508d
Fixing #156. Making it possible to goto the first unread post in a thread. Made the 'New' icon a link; when displayed on a topic, takes you to the first unread post.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 07 Mar 2011 01:22:49 +0000 |
parents | 88b2b9cb8c1f |
children | a1b03de20345 |
comparison
equal
deleted
inserted
replaced
373:54cbdef18cf4 | 374:dd673fae508d |
---|---|
29 <tbody> | 29 <tbody> |
30 {% for forum in iter.forums %} | 30 {% for forum in iter.forums %} |
31 <tr class="{% cycle 'odd' 'even' %}"> | 31 <tr class="{% cycle 'odd' 'even' %}"> |
32 <td> | 32 <td> |
33 {% if forum.has_unread %} | 33 {% if forum.has_unread %} |
34 <img src="{{ STATIC_URL }}icons/new.png" alt="New Posts" title="New Posts" class="forums-topic-icon" /> | 34 <a href="{{ forum.get_absolute_url }}"><img src="{{ STATIC_URL }}icons/new.png" alt="New Posts" title="New Posts" class="forums-topic-icon" /></a> |
35 {% endif %} | 35 {% endif %} |
36 <h4><a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a></h4> | 36 <h4><a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a></h4> |
37 <p>{{ forum.description }}</p> | 37 <p>{{ forum.description }}</p> |
38 </td> | 38 </td> |
39 <td class="forum-topics">{{ forum.topic_count }}</td> | 39 <td class="forum-topics">{{ forum.topic_count }}</td> |