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

{% extends "master.html" %}
{% block title %}Games for {{ division.name|nullable }}{% endblock %}
{% block content %}
<h1>Division: {{ division.name|nullable }}</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="{{ localize("game_url_tmpl", lang: lang, id: game.id) }}">{{ game.name|nullable }}</a></li>
{% endfor %}
</ol>
{% else %}
<p>{{ localize("no-games") }}</p>
{% endif %}
{% endblock %}