zulip/static/templates/invite_subscription.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>