summaryrefslogtreecommitdiff
path: root/addons/mail/static/src/components/mail_template/mail_template.xml
blob: 48f7c050fccf1b1645bfa835f31357842e056c6d (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
<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">

    <t t-name="mail.MailTemplate" owl="1">
        <div class="o_MailTemplate">
            <t t-if="mailTemplate">
                <i class="fa fa-envelope-o" title="Mail" role="img"/>
                <span class="o_MailTemplate_name" t-esc="mailTemplate.name"/>
                <span>:</span>
                <button
                    class="o_MailTemplate_button o_MailTemplate_preview btn btn-link"
                    t-att-data-mail-template-id="mailTemplate.id"
                    t-on-click="_onClickPreview"
                >
                    Preview
                </button>
                <span class="o_MailTemplate_text">or</span>
                <button
                    class="o_MailTemplate_button o_MailTemplate_send btn btn-link"
                    t-att-data-mail-template-id="mailTemplate.id"
                    t-on-click="_onClickSend"
                >
                    Send Now
                </button>
            </t>
        </div>
    </t>

</templates>