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/client/roomList.html

25 lines
555 B

<template name="roomList">
{{#if isLivechat}}
{{> livechat . }}
{{else}}
{{#with rooms}}
{{#if shouldAppear .. .}}
<h3 class="rooms-list__type">
{{_ ../label}}
{{#with count}}
{{#if .}}
<span class="badge">{{.}}</span>
{{/if}}
{{/with}}
</h3>
<ul class="rooms-list__list">
{{#each room in this}}
{{> chatRoomItem room }}
{{else}}
<p class="rooms-list__empty-room">{{_ "No_channels_yet" }}</p>
{{/each}}
</ul>
{{/if}}
{{/with}}
{{/if}}
</template>