mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
Moved `admin_default_stream_list` template to `/templates/settings/` folder as earlier, it was inaccurately placed within the `/templates` folder and should have been within the `/templates/settings` folder instead.
16 lines
458 B
Handlebars
16 lines
458 B
Handlebars
{{#with stream}}
|
|
<tr class="default_stream_row" data-stream-id="{{stream_id}}">
|
|
<td>
|
|
{{#if invite_only}}<i class="fa fa-lock" aria-hidden="true"></i>{{/if}}
|
|
<span class="default_stream_name">{{name}}</span>
|
|
</td>
|
|
{{#if ../can_modify}}
|
|
<td class="actions">
|
|
<button class="button rounded remove-default-stream btn-danger">
|
|
{{t "Remove from default" }}
|
|
</button>
|
|
</td>
|
|
{{/if}}
|
|
</tr>
|
|
{{/with}}
|