Show reply count in forums

This commit is contained in:
Trever Fischer
2012-04-24 13:46:47 -04:00
parent 98416917ca
commit 7c13e4d6b5

View File

@@ -17,12 +17,14 @@ Home
<table class="forum">
<tr class="header">
<th>Topic</th>
<th>Replies</th>
<th>Last Post</th>
</tr>
{% if topics %}
{% for topic in topics %}
<tr class="{%cycle 'even' 'odd' %} {% if topic.sticky %}sticky{% endif %} topic">
<td class="topic-link"><ul><li class="link">{% if topic.sticky %}Sticky: {% endif%}<a href="{{topic.get_absolute_url}}">{{ topic.title }}</a></li><li>Started by {{topic.rootPost.user}} {{topic.created|timesince}} ago</li></ul></td>
<td>{{topic.rootPost.get_descendants|length}}</td>
<td class="author-info"><div class="avatar">{% avatar topic.lastPost.user 32 %}</div><ul><li>{{topic.lastPost.user}}</li><li>{{topic.created|timesince}} ago</li></ul></td>
</tr>
{% endfor %}