a27d4f1255a45f649313164b2adaba205e3c5543
[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>
13     % for thread in c.threads:
14     <tr>
15         <td><a href="${url(controller='forum', action='posts', forum_id=c.forum.id, thread_id=thread.id)}">${thread.subject}</a></td>
16         <td>${thread.post_count}</td>
17     </tr>
18     % endfor
19 </table>