1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<div class="games"> <table> <tr> <th> Court </th> <th colspan="2"> Team 1 </th> <th colspan="2"> Team 2 </th> </tr> {% for game in games %} <tr> <th>{{ game.court.number }}</th> <td>{{ game.team1.player1.name }}</th> <td>{{ game.team1.player2.name }}</th> <td>{{ game.team2.player1.name }}</th> <td>{{ game.team2.player2.name }}</th> </tr> {% endfor %} </table> </div>