Posts no longer look like balls, yay!
[zzz-spline-forum.git] / splinext / forum / templates / forum / posts.mako
1 <%inherit file="/base.mako" />
2 <%namespace name="forumlib" file="/forum/lib.mako" />
3
4 <%def name="title()">${c.thread.subject} - Forums</%def>
5
6 <%def name="title_in_page()">
7 <ul id="breadcrumbs">
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>
11 </ul>
12 </%def>
13
14 % if c.thread.post_count == 0:
15 <p>Something terribly bogus has happened; this thread has no posts.</p>
16 % else:
17 ${forumlib.posts(c.thread.posts)}
18 % endif
19
20 ${forumlib.write_post_form(c.thread)}