mirror of https://github.com/zulip/zulip.git
16 lines
667 B
Handlebars
16 lines
667 B
Handlebars
{{! Client-side Mustache template for rendering subscriptions in the "invite user" form.}}
|
|
<a href="#" class="invite_check_all_button">{{t "Check all" }}</a> |
|
|
<a href="#" class="invite_uncheck_all_button">{{t "Uncheck all" }}</a>
|
|
<div id="invite-stream-checkboxes" class="new-style">
|
|
{{#each streams}}
|
|
|
|
<label class="checkbox display-block">
|
|
<input type="checkbox" name="stream" value="{{name}}"
|
|
{{#if default_stream}}checked="checked"{{/if}} />
|
|
<span></span>
|
|
{{#if invite_only}}<i class="fa fa-lock" aria-hidden="true"></i>{{/if}}
|
|
<label class="inline-block">{{name}}</label>
|
|
</label>
|
|
{{/each}}
|
|
</div>
|