mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 17:24:11 +08:00
16ea7ab248
Co-authored-by: Peter Wagenet <peter.wagenet@gmail.com>
12 lines
329 B
Handlebars
12 lines
329 B
Handlebars
{{#if isCheckbox}}
|
|
<label for={{inputId}}>
|
|
<Input @checked={{checked}} @id={{inputId}} @type="checkbox" />
|
|
{{i18n translationKey}}
|
|
</label>
|
|
{{else}}
|
|
<label for={{inputId}}>{{i18n translationKey}}</label>
|
|
<Input @value={{value}} @id={{inputId}} placeholder={{placeholder}} />
|
|
{{/if}}
|
|
|
|
<div class="clearfix"></div>
|