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