Files
WYGIWYH/app/templates/transactions/widgets/income_expense_toggle_buttons.html
2025-11-01 03:15:44 -03:00

26 lines
1.0 KiB
HTML

{% load crispy_forms_field %}
<div class="form-group mb-3">
<div class="join w-full" role="group" aria-label="{{ field.label }}">
{% for choice in field.field.choices %}
<input type="radio"
class="join-item btn {% if forloop.first %}btn-success{% elif forloop.last %}btn-error{% else %}btn-primary{% endif %} {% if field.errors %}input-error{% endif %} btn-outline w-1/2"
name="{{ field.html_name }}"
id="{{ field.html_name }}_{{ forloop.counter }}_tr"
value="{{ choice.0 }}"
aria-label="{{ choice.1 }}"
{% if choice.0 == field.value %}checked{% endif %}>
{% endfor %}
</div>
{% if field.errors %}
<div class="text-error text-sm mt-1">
{% for error in field.errors %}
{{ error }}
{% endfor %}
</div>
{% endif %}
{% if field.help_text %}
<small class="text-base-content/60 text-sm">{{ field.help_text }}</small>
{% endif %}
</div>