6a63cbca74b20200fd05543bc1690a866649646b
[zzz-spline-forum.git] / spline / plugins / forum / templates / forum / threads.mako
1 <%inherit file="/base.mako" />
2
3 <%def name="title()">${c.forum.name} - Forums</%def>
4
5 <ul class="classic-list">
6     % for thread in c.forum.threads:
7     <li><a href="${url(controller='forum', action='posts', forum_id=c.forum.id, thread_id=thread.id)}">${thread.subject}</a></li>
8     % endfor
9 </ul>