<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
    <t t-name="web.SettingsConfirmationDialog">
        <Dialog size="'md'" title="props.title" modalRef="modalRef">
            <t t-esc="props.body" />
            <t t-set-slot="footer">
                <button class="btn btn-primary" t-on-click="_confirm">
                    Save
                </button>
                <button class="btn btn-secondary" t-on-click="_stayHere">
                    Stay Here
                </button>
                <button class="btn btn-secondary" t-on-click="_cancel">
                    Discard
                </button>
            </t>
        </Dialog>
    </t>
</templates>
