aboutsummaryrefslogtreecommitdiff
path: root/templates/courts.j2
blob: d650298545e76670da7dafee28c9989c28bbcffe (plain) (blame)
1
2
3
4
5
6
7
8
{% from "macros.j2" import court %}
<div class="fixed-grid has-12-cols">
<div class="grid">
{% for key, value in courts.items() %}
    {{ court(key, value) }}
{% endfor %}
</div>
</div>