Implement sticky forum threads

This commit is contained in:
Trever Fischer
2012-02-19 22:28:14 -05:00
parent e30e814e57
commit bfc09616ff
3 changed files with 6 additions and 2 deletions

View File

@@ -19,7 +19,7 @@
</tr>
{% if topics %}
{% for topic in topics %}
<tr class="{%cycle 'even' 'odd' %}">
<tr class="{%cycle 'even' 'odd' %} {% if topic.sticky %}sticky{% endif %}">
<td><a href="{{topic.get_absolute_url}}">{{ topic.title }}</a></td>
<td>{{ topic.created }} </td>
<td>{{topic.lastPost.created}} by {{ topic.lastPost.user }} </td>