mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-12 16:51:14 -05:00
11 lines
306 B
Handlebars
11 lines
306 B
Handlebars
|
{{#each field.choices as |c|}}
|
||
|
<div class="radio-field-choice">
|
||
|
{{radio-button value=field.value
|
||
|
radioValue=c.id
|
||
|
label=c.label
|
||
|
icon=c.icon
|
||
|
description=c.description
|
||
|
onChange="changed"}}
|
||
|
</div>
|
||
|
{{/each}}
|