aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2018-07-31 18:22:06 +0200
committerHarald Eilertsen <haraldei@anduin.net>2018-07-31 18:22:06 +0200
commitc31ea9a8907dff87666566251dab3966756c1d9a (patch)
tree3e9aebe1b56d0918327f5c4575625d297dd5988d
parent7f5e8887e9b1a90d1ed3dd31f053dadec4c75d94 (diff)
downloadrocket-blog-c31ea9a8907dff87666566251dab3966756c1d9a.tar.gz
rocket-blog-c31ea9a8907dff87666566251dab3966756c1d9a.tar.bz2
rocket-blog-c31ea9a8907dff87666566251dab3966756c1d9a.zip
Fix users template
-rw-r--r--templates/users.html18
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>