mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
12 lines
374 B
Handlebars
12 lines
374 B
Handlebars
{{#each field.choices as |c|}}
|
|
<div class="radio-field-choice {{fieldClass}}">
|
|
{{radio-button value=field.value
|
|
radioValue=c.id
|
|
label=c.label
|
|
extraLabel=c.extra_label
|
|
icon=c.icon
|
|
description=c.description
|
|
onChange=(action "changed")}}
|
|
</div>
|
|
{{/each}}
|