projects
/
zzz-floof.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b16bbaf22cf4209f75c7187e00eb06c2b7a2b3be
[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>