2012-12-05 22:48:15 +01:00
|
|
|
{{! Client-side Mustache template for rendering subscriptions in the "invite user" form.}}
|
2013-04-02 20:47:18 +02:00
|
|
|
<a href="#" class="invite_check_all_button">Check all</a> |
|
|
|
|
<a href="#" class="invite_uncheck_all_button">Uncheck all</a>
|
2012-12-05 22:48:15 +01:00
|
|
|
<div id="stream-checkboxes">
|
2013-02-07 02:15:12 +01:00
|
|
|
{{#each streams}}
|
2012-12-05 22:48:15 +01:00
|
|
|
<label class="checkbox">
|
2013-02-07 02:15:12 +01:00
|
|
|
<input type="checkbox" name="stream" value="{{name}}"
|
|
|
|
{{#unless invite_only}}checked="true"{{/unless}}> {{name}}
|
2013-08-02 20:24:10 +02:00
|
|
|
{{#if invite_only}}<i class="icon-vector-lock"></i>{{/if}}
|
2012-12-05 22:48:15 +01:00
|
|
|
</label>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
|