mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
15 lines
418 B
Handlebars
15 lines
418 B
Handlebars
<ul class="grid">
|
|
{{#each field.choices as |choice|}}
|
|
<li>
|
|
{{theme-preview colorsId=choice.id
|
|
wizard=wizard
|
|
selectedId=field.value
|
|
onChange="changed"}}
|
|
{{radio-button radioValue=choice.id
|
|
label=choice.id
|
|
value=field.value
|
|
onChange="changed"}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|