blob: 81c93868e14eac37162e08609634eb4c0d764ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<t t-inherit="mail.ThreadIcon" t-inherit-mode="extension">
<xpath expr="//*[@name='rootCondition']" position="inside">
<t t-elif="thread.channel_type === 'livechat'">
<t t-if="thread.orderedOtherTypingMembers.length > 0">
<ThreadTypingIcon
class="o_ThreadIcon_typing"
animation="'pulse'"
title="thread.typingStatusText"
/>
</t>
<t t-else="">
<div class="fa fa-comments" title="Livechat"/>
</t>
</t>
</xpath>
</t>
</templates>
|