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.

19 lines
375 B

<table>
<thead>
<tr>
<th>{{ localize("team") }}</th>
<th>{{ localize("goal_plural") }}</th>
<th>{{ localize("shot_plural") }}</th>
</tr>
</thead>
<tbody>
{% for team in teams %}
<tr>
<td>{{ team.name }}</td>
<td>{{ team.goals }}</td>
<td>{{ team.shots }}</td>
</tr>
{% endfor %}
</tbody>
</table>