mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
11 lines
304 B
Handlebars
11 lines
304 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>
|