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.

13 lines
303 B

{% extends "master.html" %}
{% block title %}Leagues{% endblock %}
{% block content %}
<h1 id="leagues">{{ heading }}</h1>
<ol aria-labelledby="leagues">
{% for league in leagues %}
<li><a href="/{{ lang }}/league/{{ league.id }}/">{{ league.name }}</a></li>
{% endfor %}
</ol>
{% endblock %}