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