zulip/static/templates/settings/admin_auth_methods_list.handlebars
Brock Whittaker 3ff55034fe admin: Restyle administration checkboxes to match new style.
This restyles the administration checkboxes to look similar to those
that are currently present in the settings section.
2017-05-01 16:01:36 -07:00

14 lines
321 B
Handlebars

{{#with method}}
<tr class="method_row" data-method="{{method}}">
<td>
<span class="method">{{method}}</span>
</td>
<td>
<label class="checkbox">
<input type="checkbox" {{#if enabled}}checked="checked"{{/if}} />
<span></span>
</label>
</td>
</tr>
{{/with}}