1 <%inherit file="/base.mako" />
3 <%def name="title()">${c.thread.subject} - Forums</%def>
5 <%def name="title_in_page()">
7 <li><a href="${url(controller='forum', action='forums')}">Forums</a></li>
8 <li><a href="${url(controller='forum', action='threads', forum_id=c.thread.forum.id)}">${c.thread.forum.name}</a></li>
9 <li>${c.thread.subject}</li>
13 % if c.thread.post_count == 0:
14 <p>Something terribly bogus has happened; this thread has no posts.</p>
18 <div class="forum-post-container">
19 % for post in c.thread.posts:
20 <div class="forum-post">
25 <time>${post.posted_time}</time>
27 <div class="content">${post.content}</div>