mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 10:26:28 +00:00
It's not really a part of the server (aka the rest of zephyr/). (imported from commit 27f6b6b064938ad927075a68d873e4b68710d279)
12 lines
406 B
Handlebars
12 lines
406 B
Handlebars
{{! Client-side Mustache template for rendering users in the stream creation modal.}}
|
|
<a href="#" class="subs_set_all_users">Check all</a> |
|
|
<a href="#" class="subs_unset_all_users">Uncheck all</a>
|
|
<div id="user-checkboxes">
|
|
{{#each users}}
|
|
<label class="checkbox">
|
|
<input type="checkbox" name="user" value="{{this.email}}"> {{this.full_name}} ({{this.email}})
|
|
</label><br />
|
|
{{/each}}
|
|
</div>
|
|
|