Files
zulip/static/templates/admin_streams_list.handlebars
Brock Whittaker 706f422c3a Massively refactor settings page templates and styling.
This restructures the styling for the Zulip settings and
administration pages to minimize use of Bootstrap and use a consistent
styling library for similar elements.

While it is basically a wash in terms of the page's visuals, it will
make our life a lot easier for future work on improving the settings
pages section of the site.
2016-09-19 21:55:06 -07:00

14 lines
300 B
Handlebars

{{#with stream}}
<tr class="stream_row">
<td>
{{#if invite_only}}<i class="icon-vector-lock "></i>{{/if}}
<span class="stream_name">{{name}}</span>
</td>
<td>
<button class="button deactivate btn-danger">
{{t "Delete stream" }}
</button>
</td>
</tr>
{{/with}}