diff options
Diffstat (limited to 'templates/user.html')
-rw-r--r-- | templates/user.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/user.html b/templates/user.html index f5c8983..296db8c 100644 --- a/templates/user.html +++ b/templates/user.html @@ -1,11 +1,11 @@ {{ template "HEADER" }} -<h1>{{ .User }} is a bommom user.</h1> -<b>Email:</b> <a href="mailto:{{ .Email }}">{{ .Email }}</a> -<ul> +<h1>{{ .UserName }} is a bommom user.</h1> +<table class="table"> {{ range .BomList }} -<li><a href="/{{ .Owner }}/{{ .Name }}/">{{ .Name }}</a> + <tr/> + <td/><a href="/{{ .Owner }}/{{ .Name }}/">{{ .Name }}</a> {{ else }} No Boms found! {{ end }} -</ul> +</table> {{ template "FOOTER" }} |