Files
2026-06-18 10:14:27 -03:00

45 lines
629 B
HTML

---
id:
type: 'string'
label_title:
type: 'string'
default: ''
input_class:
type: 'string'
default: ''
label_class:
type: 'string'
default: ''
value:
type: 'string'
required:
type: 'bool'
default: false
autofocus:
type: 'bool'
default: false
name:
type: 'string'
aria_label:
type: 'string'
default: ''
attributes:
type: 'string'
default: ''
---
{%
render 'forms/input.html',
type: 'radio',
id:,
class: input_class,
required:,
autofocus:,
name:,
value:,
aria_label:,
attributes:
%}
{%- block 'forms/label.html' ,id: , class: label_class -%}
{{ label_title }}
{%- endblock -%}