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>
|
2013-01-31 21:01:53 +01:00
|
|
|
<div id="user-checkboxes">
|
|
|
|
{{#each users}}
|
|
|
|
<label class="checkbox">
|
2013-10-08 13:28:13 +02:00
|
|
|
<input type="checkbox" name="user" value="{{this.email}}" /> {{this.full_name}} ({{this.email}})
|
2013-01-31 21:01:53 +01:00
|
|
|
</label><br />
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
|