aboutsummaryrefslogtreecommitdiffstats
path: root/templates/users.html
blob: 9eeb5332ee12ad6fe93de2621e5c9590ba1057c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<table>
  <hr>
    <td>id</td>
    <td>username</td>
    <td>real name</td>
    <td>email</td>
  </hr>
  <tr>
    {{# users }}
      <td>{{ .id }}</td>
      <td>{{ .username }}</td>
      <td>{{ .realname() }}</td>
      <td>{{ .email() }}</td>
    {{/ users }}
  </tr>
</table>