Files
2026-08-11 15:29:46 -03:00

42 lines
618 B
HTML

---
id:
type: 'string'
value:
type: 'string'
default: ''
item:
type: 'string'
required:
type: 'bool'
default: false
autofocus:
type: 'bool'
default: false
name:
type: 'string'
default: ''
aria_label:
type: 'string'
default: ''
attributes:
type: 'string'
default: ''
---
<div class="form-check">
{%
render 'forms/input.html',
type: 'radio',
id:,
class: 'form-check-input',
required:,
autofocus:,
name:,
value:,
aria_label:,
attributes:
%}
{%- block 'forms/label.html', class: 'form-check-label', id: -%}
{{ item }}
{%- endblock -%}
</div>