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