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.

20 lines
493 B

{% extends "master.html" %}
{% block title %}Games for {{ division.name }}{% endblock %}
{% block content %}
<h1>Division: {{ division.name }}</h1>
{% if games.len() > 0 %}
<h2 id="iihf_points">Points</h2>
{{ iihf_team_stats_table|safe }}
<h2 id="games">Games</h2>
<ol aria-labelledby="games">
{% for game in games %}
<li><a href="/en/game/{{ game.id }}/">{{ game.name }}</a></li>
{% endfor %}
</ol>
{% else %}
<p>No games have been recorded.</p>
{% endif %}
{% endblock %}