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/packages/rocketchat-ui-sidenav/side-nav/listChannelsFlex.html

29 lines
558 B

<template name="listChannelsFlex">
<header>
<div>
<h4>{{_ "Channels"}}</h4>
</div>
</header>
<div class="content">
<div class="wrapper">
<h4>{{_ "Channels_list"}}</h4>
<ul>
{{#each channel}}
<li>
<a href="{{pathFor 'channel' name=name}}" class="channel-link">
<i class="icon-hash"></i>
{{name}}
</a>
</li>
{{/each}}
</ul>
</div>
</div>
<footer>
<div>
{{#if hasPermission 'create-c'}}
<button class="button clean create">{{_ "Create_new"}}</button>
{{/if}}
</div>
</footer>
</template>