Show recent forum threads on the front page. Sucks, but.
[zzz-spline-forum.git] / splinext / forum / templates / forum / front_page_activity.mako
1 <%page args="obj" />
2 <%namespace name="userlib" file="/users/lib.mako" />
3
4 <h1>Forum activity</h1>
5
6 % if obj.threads:
7 <table class="striped-rows" style="width: 100%;">
8 <tbody>
9     % for thread in obj.threads:
10     <tr>
11         <td class="name"><a href="${url(controller='forum', action='posts', forum_id=thread.forum.id, thread_id=thread.id)}">${thread.subject}</a></td>
12     </tr>
13     % endfor
14 </tbody>
15 </table>
16 % else:
17 <p>The forums are dead quiet.  No one is posting.  A lone tumbleweed rolls by.</p>
18 <p>Maybe you should <a href="${url(controller='forum', action='forums')}">do something about this</a>.</p>
19 % endif