3cb-data

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.alexwennerberg.com/3cb-data.git
Log | Files | Refs | README | LICENSE

players.html (542B)


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