]> ruin.nu Git - ndwebbie.git/blob - root/src/users/index.tt2
3c8c0866d5ab6e98922d284ef75e2311e8e0d67d
[ndwebbie.git] / root / src / users / index.tt2
1 [% META title = 'User listing' %]
2 <table>
3         <tr><th>User</th><th>P-nick</th><th>Groups</th></tr>
4 [% FOR u IN users %]
5         <tr class="[% loop.count % 2 == 0 ? 'even' : 'odd' %]">
6                 <td><a href="[% c.uri_for('edit',u.uid) %]">[% u.username | html %]</a></td>
7                 <td>[% u.pnick %]</td>
8                 <td>[% u.groups %]</td>
9         </tr>
10 [% END %]
11 </table>