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 <ul class="forum-hierarchy">
16 In forum: <strong><img src="${h.static_uri('spline', 'icons/folders-stack.png')}" alt=""> ${c.forum.name}</strong>
17 ${forumlib.forum_access_level(c.forum)}
21 <table class="forum-list striped-rows">
23 <tr class="header-row">
25 <img src="${h.static_uri('spline', 'icons/folder-open-document-text.png')}" alt="">
28 <th class="stats">Posts</th>
32 % for thread in c.threads:
34 <td class="name"><a href="${url(controller='forum', action='posts', forum_id=c.forum.id, thread_id=thread.id)}">${thread.subject}</a></td>
35 <td class="stats">${thread.post_count}</td>
41 ${forumlib.write_thread_form(c.forum)}