aboutsummaryrefslogtreecommitdiff
path: root/templates/macros.j2
blob: b4767bee2ed990ecc07bec86042ad03738e027d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% macro court(id, status) -%}
<button class= "button is-large is-responsive {% if status %}is-success{% else %}is-danger{% endif %}" 
        hx-post="{{ "/court-toggle/" ~ id}}" 
        hx-swap="outerHTML">{{ id }}</button>
{%- endmacro %}

{% macro player(id, status, name) -%}
<button class="button is-medium is-responsive {% if status %}is-success{% else %}is-danger {% endif %}" 
        hx-post="{{ "/player-toggle/" ~ id}}"
        hx-swap="outerHTML"> {{ name }} </button>
{%- endmacro %}