zulip/static/templates/admin_streams_list.handlebars
acrefoot 4cd1d69ea0 Add the ability to unsubscribe all users from a stream
This resolves Trac #2022

(imported from commit 23d5129a6bec40c33eaf71953cd41ec387646a39)
2013-11-22 17:12:51 -05:00

13 lines
229 B
Handlebars

{{#with stream}}
<tr class="stream_row">
<td>
<span class="stream_name">{{name}}</span>
</td>
<td>
<button class="btn deactivate btn-danger">
Unsubscribe everyone
</button>
</td>
</tr>
{{/with}}