This repository has been archived on 2023-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
2022-05-08 02:37:00 +08:00

12 lines
401 B
Twig

{% if class is not empty %}
<div class="{{ class }}">
{% endif %}
<input type="radio" name="{{ html_field_name }}" id="{{ html_field_id|raw }}" value="{{ choice_value }}"{{ checked ? ' checked="checked"' }} />
<label for="{{ html_field_id|raw }}">{{ (escape_label ? choice_label|e : choice_label)|raw }}</label>
{% if is_line_break %}
<br />
{% endif %}
{% if class is not empty %}
</div>
{% endif %}