summaryrefslogtreecommitdiff
path: root/addons/mail/static/src/components/emojis_popover/emojis_popover.xml
blob: cac840bbedc2736175918355cd1a8c2abfa02c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">

    <t t-name="mail.EmojisPopover" owl="1">
        <div class="o_EmojisPopover">
            <t t-foreach="emojis" t-as="emoji" t-key="emoji.unicode">
                <span class="o_EmojisPopover_emoji" t-on-click="_onClickEmoji" t-att-title="emoji.description" t-att-data-source="emoji.sources[0]" t-att-data-unicode="emoji.unicode">
                    <t t-esc="emoji.unicode"/>
                </span>
            </t>
        </div>
    </t>

</templates>