]> ruin.nu Git - ndwebbie.git/blob - root/src/users/index.tt2
Add discord_id
[ndwebbie.git] / root / src / users / index.tt2
1 [% META title = 'User listing' %]
2 <table>
3         <tr><th>User</th><th>Discord</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.discord_id | html %]</td>
8                 <td>[% u.pnick | html %]</td>
9                 <td>[% u.groups %]</td>
10         </tr>
11 [% END %]
12 </table>