2013-01-31 21:01:53 +01:00
|
|
|
{{! Client-side Mustache template for rendering users in the stream creation modal.}}
|
2013-04-02 20:47:18 +02:00
|
|
|
<a href="#" class="subs_set_all_users">Check all</a> |
|
|
|
|
<a href="#" class="subs_unset_all_users">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>
|
|
|
|
|