mirror of
https://github.com/discourse/discourse.git
synced 2025-02-09 00:45:42 +08:00
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>
|