mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
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.
14 lines
300 B
Handlebars
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}}
|