diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/users.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/users.html b/templates/users.html new file mode 100644 index 0000000..9eeb533 --- /dev/null +++ b/templates/users.html @@ -0,0 +1,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> |