{{radio}}

radio Properties

Stores the selected value from a list of radio inputs

Field Type Description
object_type string Will always be "radio".
is_valid True|False True if one of the defined options is selected.
value string The selected value.
selection string The text from the selected value.
output html The text from the selected value.
output_in_list html Same as output.
field_id string The identifier for this field.
default_value string The default value for this field if no value is specified.

Examples

Radio Button Value

Copy
{% unless entity.prize_frequency.value == 0 %}

Prizes are given away {{ entity.prize_frequency }}

{% endunless %}