summaryrefslogtreecommitdiff
path: root/html/fruitvote/templates/stats.html
diff options
context:
space:
mode:
authorLizzy Hunt <elizabeth.hunt@simponic.xyz>2024-03-10 16:45:26 -0600
committerLizzy Hunt <elizabeth.hunt@simponic.xyz>2024-03-10 16:45:26 -0600
commitdef61909c2423b19b063a5807cc399a41de39974 (patch)
tree0b035fbb1c29ac858b042092d183824f8bc1a5b5 /html/fruitvote/templates/stats.html
parent5a85dd89bc82d8fc133c0e9a58859ae9b98dbe0f (diff)
downloadtilde.club-def61909c2423b19b063a5807cc399a41de39974.tar.gz
tilde.club-def61909c2423b19b063a5807cc399a41de39974.zip
fruitvote
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 />