mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
This commit changes the redirect links for "Browse channels" and "Browse 1 more stream" to the Not subscribed(#streams/notsubscribed) tab.
17 lines
581 B
Handlebars
17 lines
581 B
Handlebars
{{#if exactly_one_unsubscribed_stream}}
|
|
<a href="#channels/notsubscribed">
|
|
<i class="fa fa-plus-circle" aria-hidden="true"></i>
|
|
{{~t "Browse 1 more channel" ~}}
|
|
</a>
|
|
{{else if can_subscribe_stream_count}}
|
|
<a href="#channels/notsubscribed">
|
|
<i class="fa fa-plus-circle" aria-hidden="true"></i>
|
|
{{~t "Browse {can_subscribe_stream_count} more channels" ~}}
|
|
</a>
|
|
{{else if can_create_streams}}
|
|
<a href="#channels/new">
|
|
<i class="fa fa-plus-circle" aria-hidden="true"></i>
|
|
{{~t "Create a channel" ~}}
|
|
</a>
|
|
{{/if}}
|