Test suite runs and passes!
[zzz-floof.git] / floof / templates / users / index.mako
index b16bbaf..fc83ae9 100644 (file)
@@ -2,7 +2,6 @@
 
 <ul>
 % for user in c.users:
-## TODO normalize URL names better perhaps
-    <li><a href="${url.current(action='view', name=user.name.lower())}">${user.name}</a></li>
+    <li><a href="${url(controller='users', action='view', name=user.name.lower())}">${user.name}</a></li>
 % endfor
 </ul>