discourse/app/assets/javascripts/wizard/addon/templates/components/wizard-field-checkboxes.hbs
Jarek Radosz fcb4e5a1a1
DEV: Make wizard an ember addon (#17027)
Co-authored-by: David Taylor <david@taylorhq.com>
2022-06-17 14:50:21 +02:00

15 lines
387 B
Handlebars

{{#each field.choices as |c|}}
<div class="checkbox-field-choice {{fieldClass}}">
<label id={{c.id}} value={{c.label}}>
{{input type="checkbox"
class="wizard-checkbox"
click=(action "changed" value="target")
checked=c.checked}}
{{#if c.icon}}
{{d-icon c.icon}}
{{/if}}
{{c.label}}
</label>
</div>
{{/each}}