2013-01-31 21:01:53 +01:00
|
|
|
{{! Client-side Mustache template for rendering users in the stream creation modal.}}
|
2016-05-12 13:53:41 +02:00
|
|
|
<a href="#" class="subs_set_all_users">{{t "Check all" }}</a> |
|
|
|
|
<a href="#" class="subs_unset_all_users">{{t "Uncheck all" }}</a>
|
2016-07-07 00:58:11 +02:00
|
|
|
<input class="add-user-list-filter" name="user_list_filter" type="text" placeholder="{{t "Filter users" }}" />
|
2013-01-31 21:01:53 +01:00
|
|
|
<div id="user-checkboxes">
|
|
|
|
{{#each users}}
|
2016-07-07 00:58:11 +02:00
|
|
|
<label class="checkbox" for="{{this.email}}">
|
2013-10-08 13:28:13 +02:00
|
|
|
<input type="checkbox" name="user" value="{{this.email}}" /> {{this.full_name}} ({{this.email}})
|
2016-07-07 00:58:11 +02:00
|
|
|
</label>
|
2013-01-31 21:01:53 +01:00
|
|
|
{{/each}}
|
|
|
|
</div>
|