discourse/app/assets/javascripts/admin/addon/templates/components/embedding-setting.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
329 B
Handlebars
Raw Normal View History

{{#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>