Files
zulip/static/templates/admin_default_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
347 B
Handlebars

{{#with stream}}
<tr class="default_stream_row" id="{{name}}">
<td>
{{#if invite_only}}<i class="icon-vector-lock "></i>{{/if}}
<span class="default_stream_name">{{name}}</span>
</td>
<td>
<button class="button remove-default-stream btn-danger">
{{t "Remove from default" }}
</button>
</td>
</tr>
{{/with}}