tilde.club/html/fruitvote/templates/stats.html

18 lines
323 B
HTML
Raw Normal View History

2024-03-10 18:45:26 -04:00
<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 />