summaryrefslogtreecommitdiff
path: root/addons/calendar/static/src/xml/notification_calendar.xml
blob: 3c51293f36c7647dcba011ed447a1edad534fa3e (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"?>
<template>

<t t-name="CalendarNotification" t-extend="Notification">
    <t t-jquery=".o_notification_title > t" t-operation="replace">
        <span  t-attf-class="link2event eid_{{widget.eid}}">
            <t t-esc="widget.title"/>
        </span>
    </t>
    <t t-jquery=".o_notification_content" t-operation="after">
        <div class="mt-2">
            <button type="button" class="btn btn-primary link2showed oe_highlight oe_form oe_button"><span>OK</span></button>
            <button type="button" class="btn btn-link link2event">Details</button>
            <button type="button" class="btn btn-link link2recall">Snooze</button>
        </div>
    </t>
</t>

</template>