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/app/livechat/client/views/sideNav/livechat.html

36 lines
953 B

<template name="livechat">
<div class="livechat-section">
<h3 class="rooms-list__type {{isActive}}">
<span class="rooms-list__type-text--livechat">{{_ "Omnichannel"}}</span>
{{#with available}}
<i class="livechat-status {{status}} {{icon}}" title="{{hint}}"></i>
{{/with}}
</h3>
{{#if showIncomingQueue}}
{{#if isLivechatAvailable}}
<h3 class="rooms-list__type {{isActive}}">
{{_ "Incoming_Livechats"}}
</h3>
<ul class="rooms-list__list inquiries">
{{#each room in inquiries}}
{{> chatRoomItem room }}
{{/each}}
</ul>
{{/if}}
<h3 class="rooms-list__type {{isActive}}">
{{_ "Open_Livechats"}}
</h3>
{{/if}}
<ul class="rooms-list__list">
{{#if showQueueLink}}
{{> sidebarItem active=activeLivechatQueue pathSection="livechat-queue" icon="queue" name="Queue"}}
{{/if}}
{{#each room in rooms}}
{{> chatRoomItem room }}
{{/each}}
</ul>
</div>
</template>