projects
/
zzz-spline-forum.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
21468eded70e3ab180d9ab8dd619ff70b67fa82f
[zzz-spline-forum.git]
/
splinext
/
forum
/
templates
/
forum
/
threads.mako
1
<%inherit file="/base.mako" />
2
3
<%def name="title()">${c.forum.name} - Forums</%def>
4
5
<table>
6
% for thread in c.threads:
7
<tr>
8
<td><a href="${url(controller='forum', action='posts', forum_id=c.forum.id, thread_id=thread.id)}">${thread.subject}</a></td>
9
</tr>
10
% endfor
11
</table>