mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 09:27:43 +00:00
This allows blueslip to catch exceptions from the event handlers on these elements in addition to the other benefits that not using inline handlers provide. (imported from commit 2bdcb2496c6c08fa7228a20ce6164b527cf64e41)
14 lines
504 B
Handlebars
14 lines
504 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-lock"></i>{{/if}}
|
|
</label>
|
|
{{/each}}
|
|
</div>
|
|
|