b97954f55a394f50e41887effa26037347199284
[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 <% return %>
17 % endif
18
19 <div class="forum-post-container">
20     % for post in c.thread.posts:
21     <div class="forum-post">
22         <div class="author">
23             ${post.author.name}
24         </div>
25         <div class="meta">
26             <time>${post.posted_time}</time>
27         </div>
28         <div class="content">${post.content}</div>
29     </div>
30     % endfor
31 </div>
32
33 ${forumlib.write_post_form(c.thread)}