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.
 
 
 
 
 

85 lines
4.5 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Search snippet template -->
<template id="autofly_search" name="Autofly Search">
<section class="search">
<form action="/cars-search" enctype="multipart/form-data"
method="post">
<div class="container">
<div class="search_bar">
<div class="row">
<div class="col-lg-2 col-md-2 col-sm-4 col-6">
<div class="brand">
<p>Brand</p>
<!-- <h6 class="b_name">BMW</h6> -->
<select class="form-select" aria-label=".form-select-lg example"
id="search_sel_box" name="car-selection">
</select>
</div>
</div>
<div class="col-lg-2 col-md-2 col-sm-4 col-6 spec_c">
<input type="text" class="form-control" id="exampleFormControlInput1"
placeholder="Model" name="car-model" required="required"/>
</div>
<div class="col-lg-2 col-md-2 col-sm-4 col-6 spec_c bd_none_sm">
<input type="text" class="form-control" id="exampleFormControlInput1"
placeholder="Location" name="car-location" required="required"/>
</div>
<div class="col-lg-1 col-md-1 col-sm-4 col-6 spec_c bd_none_md">
<input type="text" class="form-control" id="exampleFormControlInput1"
placeholder="Price" name="car-price" required="required"/>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-6">
<div class="brand">
<p>Type</p>
<select class="form-select" aria-label=".form-select-lg example"
id="search_car_type_sel_box" name="car-type-selection">
</select>
</div>
</div>
<div class="col-lg-2 col-md-2 col-sm-4 col-6 spec_c">
<div class="spec">
<button class="btn btn-secondary">Search</button>
</div>
</div>
</div>
</div>
</div>
</form>
</section>
</template>
<!-- Search Results showing template -->
<template id="specific_car">
<t t-call="website.layout">
<section class="find_car">
<div class="wrapper">
<div class="container">
<h5 class="common_heading">Search Results
</h5>
<div class="row">
<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 t-attf-href="/shop/product/#{slug(hot_deal)}" class="f_c_info">
<div class="img_wrapper">
<img t-attf-src="/web/image?model=product.template&amp;field=image_1920&amp;id=#{(hot_deal.id)}"
style="min-height: 222`px;"/>
</div>
<div class="car_name">
<t t-esc="hot_deal.name"/>
</div>
<div class="count">
<span t-if="hot_deal" t-esc="res_company.currency_id.symbol"/>
<t t-esc="hot_deal.list_price"/>
</div>
</a>
</div>
</t>
</div>
</div>
</div>
</section>
</t>
</template>
</odoo>