21c02899f4dc2e13c0f19898a0fd9573063da8a7
[zzz-spline-forum.git] / splinext / forum / templates / forum / forums.mako
1 <%inherit file="/base.mako" />
2
3 <%def name="title()">Forums</%def>
4
5 <h1>Forums</h1>
6 <table class="forum-list striped-rows">
7 <thead>
8     <tr class="header-row">
9         <th class="name">Forum</th>
10         <th class="stats">Volume</th>
11         <th class="stats">Activity</th>
12     </tr>
13 </thead>
14 <tbody>
15     % for forum in c.forums:
16     <tr>
17         <td class="name"><a href="${url(controller='forum', action='threads', forum_id=forum.id)}">${forum.name}</a></td>
18         <td class="stats">xxx</td>
19         <td class="stats">xxx</th>
20     </tr>
21     % endfor
22 </tbody>
23 </table>