summaryrefslogtreecommitdiff
path: root/addons/point_of_sale/static/src/xml/Popups/ErrorPopup.xml
blob: 0f2e19e35e70936fea012451e62c783e16ad50af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">

    <t t-name="ErrorPopup" owl="1">
        <div role="dialog" class="modal-dialog">
            <div class="popup popup-error">
                <p class="title">
                    <t t-esc="props.title" />
                </p>
                <p class="body">
                    <t t-esc="props.body" />
                </p>
                <div class="footer">
                    <div class="button cancel" t-on-click="confirm">
                        <t t-esc="props.confirmText" />
                    </div>
                </div>
            </div>
        </div>
    </t>

</templates>