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