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/privateGroups.html

18 lines
413 B

<template name="privateGroups">
<h3 class="add-room {{isActive}}">
{{_ "Private_Groups"}}
{{#if hasPermission 'create-p'}}
<i class="icon-plus"></i>
{{/if}}
</h3>
<ul>
{{#each rooms}}
{{> chatRoomItem }}
{{else}}
<p class="empty">{{_ "No_groups_yet" }}</p>
{{/each}}
</ul>
{{#if $gt total totalOpen}}
<a href="" class="more more-groups">{{_ "More_groups"}} ..</a>
{{/if}}
</template>