24d59a874d5ab22add6978be7fca3171a605e7b5
[zzz-spline-forum.git] / splinext / forum / templates / forum / forums.mako
1 <%inherit file="/base.mako" />
2
3 <%def name="title()">Forums</%def>
4
5 <table>
6     % for forum in c.forums:
7     <tr>
8         <td><a href="${url(controller='forum', action='threads', forum_id=forum.id)}">${forum.name}</a></td>
9     </tr>
10     % endfor
11 </table>