{% set is_inline = inline if inline is defined else (not in_grid and opciones|length <= 3 and (not label or label|length < 50)) %}
{% if label %} {% endif %}
{% for opt in opciones %} {% set opt_value = opt.value if opt.value is defined else opt.valor if opt.valor is defined else opt.label %} {% set is_checked = opt.checked or (seleccionado and opt_value == seleccionado) or (seleccionados and opt_value in seleccionados) %} {% if interactive|default(True) %}
{{ opt.label }}
{% else %}
{% if is_checked %}✓{% endif %} {{ opt.label }}
{% endif %} {% endfor %}