discourse/app/assets/javascripts/admin/templates/components/embedding-setting.hbs
2015-08-20 15:56:05 -04:00

11 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>