1 <%inherit file="/base.mako" />
2 <%namespace name="forumlib" file="/forum/lib.mako" />
4 <%def name="title()">${c.thread.subject} - Forums</%def>
6 <%def name="title_in_page()">
8 <li><a href="${url(controller='forum', action='forums')}">Forums</a></li>
9 <li><a href="${url(controller='forum', action='threads', forum_id=c.thread.forum.id)}">${c.thread.forum.name}</a></li>
10 <li>${c.thread.subject}</li>
14 % if c.thread.post_count == 0:
15 <p>Something terribly bogus has happened; this thread has no posts.</p>
17 ${forumlib.posts(c.thread.posts)}
20 ${forumlib.write_post_form(c.thread)}