mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 01:24:34 +08:00
12 lines
350 B
Handlebars
12 lines
350 B
Handlebars
{{#each field.choices as |c|}}
|
|
<div class="radio-field-choice">
|
|
{{radio-button value=field.value
|
|
radioValue=c.id
|
|
label=c.label
|
|
extraLabel=c.extra_label
|
|
icon=c.icon
|
|
description=c.description
|
|
onChange="changed"}}
|
|
</div>
|
|
{{/each}}
|