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/iihf_team_stats_table.html

27 lines
471 B

<table>
<thead>
<tr>
<th>Team</th>
<th>Points</th>
<th>RW</th>
<th>RL</th>
<th>OW</th>
<th>OL</th>
<th>T</th>
</tr>
</thead>
<tbody>
{% for team in iihf_stats %}
<tr>
<td>{{ team.team_name }}</td>
<td>{{ team.points }}</td>
<td>{{ team.reg_wins }}</td>
<td>{{ team.reg_losses }}</td>
<td>{{ team.ot_wins }}</td>
<td>{{ team.ot_losses }}</td>
<td>{{ team.ties }}</td>
</tr>
{% endfor %}
</tbody>
</table>