Files
zulip/zephyr/static/templates/new_stream_users.handlebars
Zev Benjamin de1f4b0be2 Remove all inline event handlers
This allows blueslip to catch exceptions from the event handlers on
these elements in addition to the other benefits that not using
inline handlers provide.

(imported from commit 2bdcb2496c6c08fa7228a20ce6164b527cf64e41)
2013-04-04 11:34:32 -04:00

12 lines
421 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}}" checked="true"> {{this.full_name}} ({{this.email}})
</label><br />
{{/each}}
</div>