1 <%inherit file="/base.mako" />
2 <%namespace name="forumlib" file="/forum/lib.mako" />
4 <%def name="title()">${c.forum.name} - Forums</%def>
6 <%def name="title_in_page()">
8 <li><a href="${url(controller='forum', action='forums')}">Forums</a></li>
9 <li>${c.forum.name}</li>
14 ${forumlib.hierarchy(c.forum)}
16 <table class="forum-list striped-rows">
18 <tr class="header-row">
20 <img src="${h.static_uri('spline', 'icons/folder-open-document-text.png')}" alt="">
23 <th class="stats">Posts</th>
27 % for thread in c.threads:
29 <td class="name"><a href="${url(controller='forum', action='posts', forum_id=c.forum.id, thread_id=thread.id)}">${thread.subject}</a></td>
30 <td class="stats">${thread.post_count}</td>
36 ${forumlib.write_thread_form(c.forum)}