{# ref: https://flowbite.com/docs/components/buttons/ #} {% load random_tags %} {% uuid4_hex as random_id %} <{{ tag|default:"a" }} id="{{ random_id }}" class="relative btn {{ class }}" {% if link %}href="{{ link }}"{% endif %} {# htmx #} {% if hx_get %}hx-get="{{ hx_get }}"{% endif %} {% if hx_post %}hx-post="{{ hx_post }}"{% endif %} {% if hx_put %}hx-put="{{ hx_put }}"{% endif %} {% if hx_delete %}hx-delete="{{ hx_delete }}"{% endif %} {% if hx_trigger %}hx-trigger="{{ hx_trigger }}"{% endif %} {% if hx_target %}hx-target="{{ hx_target }}"{% endif %} {% if hx_swap %}hx-swap="{{ hx_swap }}"{% endif %} hx-indicator="#{{ random_id }}-htmx-indicator" {# tooltip #} {% if tooltip %} x-data="{ tooltip: false }" x-on:mouseover="tooltip = true" x-on:mouseleave="tooltip = false" {% endif %} {% if onclick %} onclick="{{ onclick }}" {% endif %} {{ attrs }} > {% if tooltip %}
{{ tooltip }}
{% endif %} {{ label }} {{ slot }}