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