mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 10:08:20 -05:00
11 lines
309 B
Handlebars
11 lines
309 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=placeholderValue}}
|
|
{{/if}}
|
|
|
|
<div class='clearfix'></div>
|