git - alex wennerberg
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
{% include 'header.html' %}
<table class="players-table">
  <thead>
    <tr>
      <th>Player</th>
      <th>Rounds</th>
      <th>Wins</th>
      <th>First Played</th>
    </tr>
  </thead>
  <tbody>
    {% for player in players %}
      <tr>
        <td><a href="/player?name={{ player.player|url_encode }}">{{ player.player }}</a></td>
        <td>{{ player.rounds_played }}</td>
        <td>{{ player.rounds_won }}</td>
        <td>{{ player.first_played }}</td>
      </tr>
    {% endfor %}
  </tbody>
</table>
{% include 'footer.html' %}