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
495 B

<table>
<thead>
<tr>
<th>{{ localize("name") }}</th>
<th>{{ localize("point_plural") }}</th>
<th>{{ localize("goal_plural") }}</th>
<th>{{ localize("assist_plural") }}</th>
</tr>
</thead>
<tbody>
{% for player in players %}
<tr>
<td>{{ player.first_names|initials }} {{ player.last_name }}</td>
<td>{{ player.points }}</td>
<td>{{ player.goals }}</td>
<td>{{ player.assists }}</td>
</tr>
{% endfor %}
</tbody>
</table>