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

<table>
<thead>
<tr>
<th>Team</th>
<th>Goals</th>
<th>Shots</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>