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.
 
 
 
 
 

148 lines
7.2 KiB

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<!--Template for confirmation of subscription-->
<template id="subscription_form_success">
<t t-call="website.layout">
<section id="subscription_form_page">
<div id="wrap">
<div class="container"
style="height: 50vh;display: flex;align-items: center;">
<div class="col-md-12">
<div class="alert alert-success"
style="text-align: center;width: 50%;margin: 0 auto;">
Dear
<t t-esc="customer_name"/>,
<br/>
Your Subscription for
<t t-esc="vehicle_name"/>
vehicle has confirmed.
</div>
</div>
</div>
</div>
</section>
</t>
</template>
<!-- This template get loaded when vehicle is not found. -->
<template id="subscription_vehicle_missing">
<t t-call="website.layout">
<section id="subscription_missing_page">
<div class="btn btn-primary redirect_back_with_data"
style="background:none; border:none;">
<span style="font-size:18px; color:#000; background-image:url('https://cdn-icons-png.flaticon.com/512/2985/2985162.png');width: 63px;
height: 63px;display: block;background-size: 60%;margin-top: 23px;background-position: center;background-repeat: no-repeat;"/>
</div>
<div id="wrap">
<div class="container"
style="height: 50vh;display: flex;align-items: center;">
<div class="col-md-12">
<div class="alert alert-success"
style="text-align: center;width: 50%;margin: 0 auto;">
Sorry Vehicles not found
</div>
</div>
</div>
</div>
</section>
</t>
</template>
<!--Template for cancellation of vehicle-->
<template id="booking_cancellation">
<t t-call="website.layout">
<section id="subscription_cancellation_page">
<div class="btn btn-primary redirect_back_with_data"
style="background:none; border:none;">
<span style="font-size:18px; color:#000; background-image:url('https://cdn-icons-png.flaticon.com/512/2985/2985162.png');width: 63px;
height: 63px;display: block;background-size: 60%;margin-top: 23px;background-position: center;background-repeat: no-repeat;"/>
</div>
<div id="wrap">
<div class="container"
style="height: 50vh;display: flex;align-items: center;">
<div class="col-md-12">
<div class="alert alert-success"
style="text-align: center;width: 50%;margin: 0 auto;">
Dear
<t t-esc="customer"/>
Cancellation for the
<t t-esc="vehicle"/>
has been Processing.Will get back soon.
</div>
</div>
</div>
</div>
</section>
</t>
</template>
<!--Template for request in vehicle change-->
<template id="change_subscription">
<t t-call="website.layout">
<div id="wrap">
<section id="change_subscription_on">
<div class="btn btn-primary redirect_back_with_data"
style="background:none; border:none;">
<span style="font-size:18px; color:#000; background-image:url('https://cdn-icons-png.flaticon.com/512/2985/2985162.png');width: 63px;
height: 63px;display: block;background-size: 60%;margin-top: 23px;background-position: center;background-repeat: no-repeat;"/>
</div>
<div class="container"
style="height: 50vh;display: flex;align-items: center;">
<div class="col-md-12">
<div class="alert alert-success"
style="text-align: center;width: 50%;margin: 0 auto;">
Request for changing vehicle has been
Processing.Will get back soon.
</div>
</div>
</div>
</section>
</div>
</t>
</template>
<template id="existing_cancellation_popup">
<t t-call="website.layout">
<div class="btn btn-primary redirect_back_with_data"
style="background:none; border:none;">
<span style="font-size:18px; color:#000; background-image:url('https://cdn-icons-png.flaticon.com/512/2985/2985162.png');width: 63px;
height: 63px;display: block;background-size: 60%;margin-top: 23px;background-position: center;background-repeat: no-repeat;"/>
</div>
<xpath expr="//h1" position="after">
<t t-if="existing_request">
<div class="alert alert-danger"
style="width: 504px;margin-left: 600px;margin-top: 25px;">
<strong>Warning!</strong>
<p>A cancellation request for
<t t-esc="customer"/>
and
<t t-esc="vehicle"/>
already exists.Please contact support for further
assistance.
</p>
</div>
</t>
</xpath>
</t>
</template>
<template id="existing_subscription_popup">
<t t-call="website.layout">
<div class="btn btn-primary redirect_back_with_data"
style="background:none; border:none;">
<span style="font-size:18px; color:#000; background-image:url('https://cdn-icons-png.flaticon.com/512/2985/2985162.png');width: 63px;
height: 63px;display: block;background-size: 60%;margin-top: 23px;background-position: center;background-repeat: no-repeat;"/>
</div>
<xpath expr="//h1" position="after">
<t t-if="existing_request">
<div class="alert alert-danger"
style="width: 504px;margin-left: 600px;margin-top: 25px;">
<strong>Warning!</strong>
<p>A Subscription request for
<t t-esc="customer"/>
and
<t t-esc="current_vehicle"/>
already exists.Please contact support for further
assistance.
</p>
</div>
</t>
</xpath>
</t>
</template>
</odoo>