You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
598 B
18 lines
598 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Booking success template-->
|
|
<template id="form_submit" name="Form Successfully Submitted">
|
|
<t t-call="website.layout">
|
|
<div id="wrap">
|
|
<div class="container">
|
|
<div class="col-md-12">
|
|
<div class="alert alert-success">
|
|
Booking Accepted.
|
|
</div>
|
|
<a href="/">Go back to Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</template>
|
|
</odoo>
|
|
|