aboutsummaryrefslogtreecommitdiffstats
path: root/templates/users.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/users.html')
-rw-r--r--templates/users.html16
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>