16 lines
No EOL
607 B
Django/Jinja
16 lines
No EOL
607 B
Django/Jinja
{#def label, variant="primary", type="button", disabled=False,
|
|
hx_post="", hx_get="", hx_target="", hx_swap="innerHTML",
|
|
hx_indicator="", hx_encoding="" #}
|
|
<button
|
|
type="{{ type }}"
|
|
class="btn btn-{{ variant }}"
|
|
{% if disabled %}disabled{% endif %}
|
|
{% if hx_post %}hx-post="{{ hx_post }}"{% endif %}
|
|
{% if hx_get %}hx-get="{{ hx_get }}"{% endif %}
|
|
{% if hx_target %}hx-target="{{ hx_target }}"{% endif %}
|
|
hx-swap="{{ hx_swap }}"
|
|
{% if hx_indicator %}hx-indicator="{{ hx_indicator }}"{% endif %}
|
|
{% if hx_encoding %}hx-encoding="{{ hx_encoding }}"{% endif %}
|
|
>
|
|
{{ label }}
|
|
</button> |