Test suite runs and passes!
[zzz-floof.git] / floof / templates / users / index.mako
1 <%inherit file="/base.mako" />
2
3 <ul>
4 % for user in c.users:
5     <li><a href="${url(controller='users', action='view', name=user.name.lower())}">${user.name}</a></li>
6 % endfor
7 </ul>