<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
    <t t-name="xeno_leave.GridExportDialog">
        <Dialog title="props.title" size="'sm'">
            <div class="o_xeno_grid_export_dialog">
                <p class="mb-3" t-esc="props.message"/>
                <div class="d-flex justify-content-end gap-2">
                    <button class="btn btn-secondary" t-on-click="() => props.close()">Cancel</button>
                    <button class="btn btn-outline-primary" t-on-click="() => this.choose('pdf')">
                        <i class="fa fa-file-pdf-o me-1"/>PDF
                    </button>
                    <button class="btn btn-primary" t-on-click="() => this.choose('xlsx')">
                        <i class="fa fa-file-excel-o me-1"/>Excel
                    </button>
                </div>
            </div>
        </Dialog>
    </t>
</templates>
