mirror of https://github.com/zulip/zulip.git
14 lines
513 B
Handlebars
14 lines
513 B
Handlebars
{{! Client-side Mustache template for rendering subscriptions in the "invite user" form.}}
|
|
<a href="#" class="invite_check_all_button">Check all</a> |
|
|
<a href="#" class="invite_uncheck_all_button">Uncheck all</a>
|
|
<div id="stream-checkboxes">
|
|
{{#each streams}}
|
|
<label class="checkbox">
|
|
<input type="checkbox" name="stream" value="{{name}}"
|
|
{{#unless invite_only}}checked="true"{{/unless}} /> {{name}}
|
|
{{#if invite_only}}<i class="icon-vector-lock"></i>{{/if}}
|
|
</label>
|
|
{{/each}}
|
|
</div>
|
|
|