You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ibihf/templates/partials/individual_game_points_tabl...

21 lines
366 B

<table>
<thead>
<tr>
<th>Name</th>
<th>Points</th>
<th>Goals</th>
<th>Assists</th>
</tr>
</thead>
<tbody>
{% for player in players %}
<tr>
<td>{{ player.name }}</td>
<td>{{ player.points }}</td>
<td>{{ player.goals }}</td>
<td>{{ player.assists }}</td>
</tr>
{% endfor %}
</tbody>
</table>