1 <%inherit file="/base.mako" />
3 <%def name="title()">${c.forum.name} - Forums</%def>
5 <%def name="title_in_page()">
7 <li><a href="${url(controller='forum', action='forums')}">Forums</a></li>
8 <li>${c.forum.name}</li>
12 <table class="forum-list striped-rows">
14 <tr class="header-row">
15 <th class="name">Thread</th>
16 <th class="stats">Posts</th>
20 % for thread in c.threads:
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>