diff options
Diffstat (limited to 'templates/users.html')
-rw-r--r-- | templates/users.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/users.html b/templates/users.html index 9eeb533..8490311 100644 --- a/templates/users.html +++ b/templates/users.html @@ -1,16 +1,16 @@ <table> - <hr> - <td>id</td> - <td>username</td> - <td>real name</td> - <td>email</td> - </hr> <tr> - {{# users }} + <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> - {{/ users }} - </tr> + </tr> + {{/ users }} </table> |