tilde.club/html/fruitvote/templates/stats.html
Lizzy Hunt def61909c2
All checks were successful
continuous-integration/drone/push Build is passing
fruitvote
2024-03-10 16:45:26 -06:00

18 lines
323 B
HTML

<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 />