Files
zulip/web/templates/subscribe_to_more_streams.hbs
sujal shah 26ae173a2c left_sidebar: Change redirect link for Browse channels.
This commit changes the redirect links for "Browse channels" and
"Browse 1 more stream" to the Not subscribed(#streams/notsubscribed)
tab.
2024-06-04 09:49:50 -07:00

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}}