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

{% extends "master.html" %}
{% block title %}Divisions{% endblock %}
{% block content %}
<h1 id="first-heading">Divisions for the {{ league.name }}</h1>
<ul aria-labelledby="first-heading">
{% for division in divisions %}
<li><a href="/en/division/{{ division.id }}/">{{ division.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}