Files
zulip/static/templates/new_stream_users.handlebars
Steve Howell 565a1084fa Close input tag in new_stream_users.handlebars
(imported from commit bbc948ec8818b1a64d5d3a6140a71dd1617c560c)
2013-10-08 17:21:55 -04:00

12 lines
408 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>