The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/views/app/sideNav/channels.html

16 lines
366 B

<template name="channels">
<h3 class="add-room {{isActive}}">
{{_ "Channels"}}
{{#if hasPermission 'create-c'}}
<i class="a-plus"></i>
{{/if}}
</h3>
<ul>
{{#each rooms}}
{{> chatRoomItem }}
{{else}}
<p class="empty">{{_ "No_channels_yet" }}</p>
{{/each}}
</ul>
<a href="" class="more more-channels">{{_ "More_channels"}} ..</a>
</template>