Mercurial > public > sg101
comparison gpp/templates/forums/index.html @ 263:307a74e28112
Fixing #113; re-arrange the RSS forum feed icons around a bit.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 23 Sep 2010 00:26:07 +0000 |
parents | a46788862737 |
children | 21d2ca3b4bf7 |
comparison
equal
deleted
inserted
replaced
262:5232d5808057 | 263:307a74e28112 |
---|---|
38 <tr class="{% cycle 'odd' 'even' %}"> | 38 <tr class="{% cycle 'odd' 'even' %}"> |
39 <td> | 39 <td> |
40 {% if forum.has_unread %} | 40 {% if forum.has_unread %} |
41 <img src="{{ MEDIA_URL }}icons/new.png" alt="New Posts" title="New Posts" class="forums-topic-icon" /> | 41 <img src="{{ MEDIA_URL }}icons/new.png" alt="New Posts" title="New Posts" class="forums-topic-icon" /> |
42 {% endif %} | 42 {% endif %} |
43 <h4><a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a> | 43 <h4><a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a></h4> |
44 {% if forum.has_feed %} | 44 <p>{{ forum.description }}</p> |
45 <a href="/feeds/forums/{{ forum.slug }}/"> | 45 </td> |
46 <img src="{{ MEDIA_URL }}icons/feed.png" alt="RSS Feed" title="Feed for this forum" /></a> | |
47 {% endif %}</h4> | |
48 <p>{{ forum.description }}</p></td> | |
49 <td class="forum-topics">{{ forum.topic_count }}</td> | 46 <td class="forum-topics">{{ forum.topic_count }}</td> |
50 <td class="forum-posts">{{ forum.post_count }}</td> | 47 <td class="forum-posts">{{ forum.post_count }}</td> |
51 <td class="forum-last_post">{% last_post_info forum.last_post %}</td> | 48 <td class="forum-last_post">{% last_post_info forum.last_post %}</td> |
52 </tr> | 49 </tr> |
53 {% endfor %} | 50 {% endfor %} |