blob: cf5aa027672c877ef0f1efc91da860226ea58b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<t t-name="mail.NotificationPopover" owl="1">
<div class="o_NotificationPopover">
<t t-foreach="notifications" t-as="notification" t-key="notification.localId">
<div class="o_NotificationPopover_notification">
<i class="o_NotificationPopover_notificationIcon" t-att-class="iconClass" t-att-title="iconTitle" role="img"/>
<t t-if="notification.partner">
<span class="o_NotificationPopover_notificationPartnerName" t-esc="notification.partner.nameOrDisplayName"/>
</t>
</div>
</t>
</div>
</t>
</templates>
|