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.

17 lines
385 B

{% extends "master.html" %}
{% block title %}Games{% endblock %}
{% block content %}
<h1 id="games">Games for {{ division.name }}</h1>
{% if games.len() > 0 %}
<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 %}