This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/wizard/templates/components/wizard-field-checkboxes.hbs

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}}