{% load allauth %}
{% comment %}
Tags guide (space-separated string in attrs.tags):
prominent → primary filled button (indigo)
outline + primary → indigo outline button
danger / delete → red button
secondary → gray/muted button
tool → small inline action
default → white outlined button
{% endcomment %}
{% if attrs.tags and "danger" in attrs.tags %}
{% if attrs.href %}
{% slot %}{% endslot %}
{% else %}
{% endif %}
{% elif attrs.tags and "prominent" in attrs.tags and "outline" in attrs.tags %}
{% if attrs.href %}
{% slot %}{% endslot %}
{% else %}
{% endif %}
{% elif attrs.tags and "prominent" in attrs.tags %}
{% if attrs.href %}
{% slot %}{% endslot %}
{% else %}
{% endif %}
{% elif attrs.tags and "tool" in attrs.tags %}
{% if attrs.href %}
{% slot %}{% endslot %}
{% else %}
{% endif %}
{% else %}
{% if attrs.href %}
{% slot %}{% endslot %}
{% else %}
{% endif %}
{% endif %}