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

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