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