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.
 
 
 
 
 

56 lines
2.5 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Find car snippet template before saving -->
<template id="find_car_snippet" name="Find Car">
<section class="oe_structure">
<div class="banner_added find_car_class">
<br/>
<br/>
<br/>
<hr/>
<div class="container">
<div class="alert alert-info">
<h4>Your product tab snippet will be displayed here...
Please Save to view the snippet</h4>
</div>
</div>
<hr/>
</div>
</section>
</template>
<!-- Find car snippet template after saving -->
<template id="autofly_find_car" name="Find Car">
<div class="wrapper">
<div class="container find_car oe_structure">
<div class="row">
<div class="col-lg-6 col-12">
<div class="f_c_heading">
<h5 class="common_heading">Find Car by MODEL</h5>
<p class="common_text">
Lorem ipsum dolor sit amet consecte adipiscing eiusmod tempor
</p>
</div>
</div>
<t t-foreach="hot_deals" t-as="hot_deal" t-if="hot_deals">
<div class="col-lg-3 col-md-6 col-sm-6 col-12 pt-5 pt-lg-0 ">
<a class="f_c_info" href="#">
<div class="img_wrapper" style="height: 140px; margin-bottom: 5px">
<img t-attf-src="/web/image?model=car.types&amp;field=image&amp;id=#{hot_deal.id}"
class="img img-fluid rotate-center" style="max-height: 100%" alt=""
loading="lazy"/>
</div>
<div class="car_name">
<t t-esc="hot_deal.name"/>
</div>
<div class="count">
<t t-esc="hot_deal.product_count"/>
Vehicles
</div>
</a>
</div>
</t>
</div>
</div>
</div>
</template>
</odoo>