mirror of https://github.com/zulip/zulip.git
15 lines
417 B
Handlebars
15 lines
417 B
Handlebars
|
<div class="input-group">
|
||
|
<label class="checkbox">
|
||
|
<input type="checkbox" class="inline-block" name="{{setting_name}}"
|
||
|
id="{{setting_name}}"
|
||
|
{{#if is_checked}}
|
||
|
checked="checked"
|
||
|
{{/if}} />
|
||
|
<span></span>
|
||
|
</label>
|
||
|
<label for="{{setting_name}}" class="inline-block">
|
||
|
{{t label}}
|
||
|
</label>
|
||
|
{{{end_content}}}
|
||
|
</div>
|