summaryrefslogtreecommitdiff
path: root/html/fruitvote/templates/stats.html
blob: c5fea5c2f3bf8f81a9e9a2560eab570644f9bdb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 />