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