summaryrefslogtreecommitdiff
path: root/templates/courts.j2
blob: 64fd44acf1deaf934889cc2d83798354a58ec958 (plain) (blame)
1
2
3
4
5
6
7
8
9
<div class="fixed-grid has-12-cols">
<div class="grid">
{% for court in courts %}
    <div class="cell">
        <button class={% if court.status %} "button is-success" {% else %} "button is-danger" {% endif %} hx-post="{{ "/court-toggle/" ~ court.number}}" hx-trigger="click" hx-swap="outerHTML">{{ court.number }}</button>
    </div>
{% endfor %}
</div>
</div>