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