summaryrefslogtreecommitdiff
path: root/html/fruitvote/templates/stats.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/fruitvote/templates/stats.html')
-rw-r--r--html/fruitvote/templates/stats.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/html/fruitvote/templates/stats.html b/html/fruitvote/templates/stats.html
new file mode 100644
index 0000000..c5fea5c
--- /dev/null
+++ b/html/fruitvote/templates/stats.html
@@ -0,0 +1,17 @@
+<table>
+ <tr>
+ <th>picture</th>
+ <th>name</th>
+ <th>elo</th>
+ </tr>
+ {{ range . }}
+ <tr>
+ <td><img src="{{ .Img }}" alt="{{ .Name }}" width="100" height="100"></td>
+ <td>{{ .Name }}</td>
+ <td>{{ .Elo }}</td>
+ </tr>
+ {{ end }}
+</table>
+<br />
+<a href="/~simponic/fruitvote">back</a>
+<br />