4
How to display a Forum list in the index page
4
How to display a Forum list
6
<div class="box_item_model index_category">
7
<h3 class="title">{{category.cat}} </h3>
8
<table class="full_site" cellspacing="1">
9
<tr class="show_center" cellspacing="0">
10
<td width="5%" class="info_line show_left"> </td>
11
<td width="57%" nowrap="nowrap" class="info_line show_left">Forum</td>
12
<td width="9%" nowrap="nowrap" class="info_line show_left">Topics</td>
13
<td width="9%" nowrap="nowrap" class="info_line show_left">Posts</td>
14
<td width="20%" nowrap="nowrap" class="info_line show_left">Last Post</td>
17
{% for forum in category.forums %}
18
{% include 'pybb/inlines/forum_row.html' %}
10
{% load custom_date %}
14
{% for forum in category.forums.all %}
15
<tr class="{% cycle 'odd' 'even' %}">
16
<td class="forumIcon center">
17
{% if forum|pybb_has_unreads:user %}
18
<img src="{{ MEDIA_URL }}/forum/img/folder_big_work_star.png" style="width: 48px; height:48px; margin: 0px;" alt="" />
20
<img src="{{ MEDIA_URL }}/forum/img/folder_big_work.png" style="width: 48px; height:48px; margin: 0px;" alt="" />
23
<td class="forumTitle">
24
<a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a>
26
<span class="small">{{ forum.description }}</span>
28
<td class="forumCount center small" style="width: 120px;">
29
Topics: {{ forum.topics.count }}<br/>
30
Posts: {{ forum.posts.count }}
33
{%if forum.last_post %}
34
<a href="{{forum.last_post.get_absolute_url}}">{{ forum.last_post.topic.name }}</a><br />
35
<span class="small">by {{ forum.last_post.user|user_link }}<br />
36
on {{ forum.last_post.created|custom_date:user}}</span>