mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
In 06615bee00, we accidentally
introduced a duplicate HTML ID for #stream-checkboxes, which in turn
caused the "invite users" page to no longer work. This fixes that
problem.
13 lines
540 B
Handlebars
13 lines
540 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">
|
|
{{#each streams}}
|
|
<label class="checkbox">
|
|
<input type="checkbox" name="stream" value="{{name}}"
|
|
{{#unless invite_only}}checked="checked"{{/unless}} /> {{name}}
|
|
{{#if invite_only}}<i class="icon-vector-lock"></i>{{/if}}
|
|
</label>
|
|
{{/each}}
|
|
</div>
|