summaryrefslogtreecommitdiff
path: root/views/users.tpl
blob: b661740d4ee7e98a2101b7fee3c4b04f14c57c5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%#generate HTML table of all users
<table border="1">
  <tr>
    <th>Username</th>
    <th>Description</th>
  </tr>
%for user, desc in users.items():
  <tr>
    <td><a href="{{user}}/">{{user}}</a></td>
    <td><a href="{{user}}/">{{desc}}</a></td>
  </tr>
%end
</table>