blob: 95c4694a661bf8356db5db387bac5ee86bdafd27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<t t-name="mail.ThreadIcon" owl="1">
<div class="o_ThreadIcon">
<t t-if="thread" name="rootCondition">
<t t-if="thread.channel_type === 'channel'">
<t t-if="thread.public === 'private'">
<!-- AKU TODO: channel of type 'groups' should maybe also have lock icon -->
<div class="o_ThreadIcon_channelPrivate fa fa-lock" title="Private channel"/>
</t>
<t t-else="">
<div class="o_ThreadIcon_channelPublic fa fa-hashtag" title="Public channel"/>
</t>
</t>
<t t-elif="thread.channel_type === 'chat' and thread.correspondent">
<t t-if="thread.orderedOtherTypingMembers.length > 0">
<ThreadTypingIcon
class="o_ThreadIcon_typing"
animation="'pulse'"
title="thread.typingStatusText"
/>
</t>
<t t-elif="thread.correspondent.im_status === 'online'">
<div class="o_ThreadIcon_online fa fa-circle" title="Online"/>
</t>
<t t-elif="thread.correspondent.im_status === 'offline'">
<div class="o_ThreadIcon_offline fa fa-circle-o" title="Offline"/>
</t>
<t t-elif="thread.correspondent.im_status === 'away'">
<div class="o_ThreadIcon_away fa fa-circle" title="Away"/>
</t>
<t t-elif="thread.correspondent === env.messaging.partnerRoot">
<div class="o_ThreadIcon_online fa fa-heart" title="Bot"/>
</t>
<t t-else="" name="noImStatusCondition">
<div class="o_ThreadIcon_noImStatus fa fa-question-circle" title="No IM status available"/>
</t>
</t>
<t t-elif="thread.model === 'mail.box'">
<t t-if="thread === env.messaging.inbox">
<div class="o_ThreadIcon_mailboxInbox fa fa-inbox"/>
</t>
<t t-elif="thread === env.messaging.starred">
<div class="o_ThreadIcon_mailboxStarred fa fa-star-o"/>
</t>
<t t-elif="thread === env.messaging.history">
<div class="o_ThreadIcon_mailboxHistory fa fa-history"/>
</t>
<t t-elif="thread === env.messaging.moderation">
<div class="o_ThreadIcon_mailboxModeration fa fa-envelope"/>
</t>
</t>
</t>
</div>
</t>
</templates>
|