Users namespace index and a quick userlist.
[zzz-floof.git] / floof / templates / users / index.mako
1 <%inherit file="/base.mako" />
2
3 <ul>
4 % for user in c.users:
5 ## TODO normalize URL names better perhaps
6     <li><a href="${url.current(action='view', name=user.name.lower())}">${user.name}</a></li>
7 % endfor
8 </ul>