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.
94 lines
4.9 KiB
94 lines
4.9 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Popular model snippet template before saving -->
|
|
<template id="product_tab_snippet" name="Popular Model">
|
|
<section class="product_tab_class oe_structure">
|
|
<div class="banner_added">
|
|
<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>
|
|
|
|
<!-- Popular model snippet template after saving -->
|
|
<template id="popular_modal" name="Popular Model">
|
|
<section class="Popular">
|
|
<div class="wrapper">
|
|
<div class="container">
|
|
<h5 class="common_heading">POPULAR CAR MODEL</h5>
|
|
<div class="row mt-5 pt-3" style="--gutter-x: 32px;">
|
|
<t t-foreach="hot_deals" t-as="hot_deal"
|
|
t-if="hot_deals">
|
|
<div class="col-lg-3 col-md-4 col-sm-6 col-12">
|
|
<div class="product_card">
|
|
<a t-attf-href="/shop/product/#{slug(hot_deal)}">
|
|
<div class="p_card_heading" style="white-space: nowrap; width: 242px; overflow: hidden;
|
|
text-overflow: ellipsis;">
|
|
<t t-esc="hot_deal.display_name"/>
|
|
</div>
|
|
<div class="img_wrapper">
|
|
<img t-attf-src="/web/image?model=product.template&field=image_1920&id=#{hot_deal.id}"
|
|
class="img img-fluid rotate-center"
|
|
alt=""
|
|
loading="lazy"/>
|
|
</div>
|
|
<div class="card_bottom">
|
|
<div class="c_b_wrapper">
|
|
<img src="/theme_autofly/static/src/assets/card_icon/speedometer 1.png"
|
|
alt=""/>
|
|
<span class="d-block">
|
|
2000 KM
|
|
</span>
|
|
</div>
|
|
<div class="c_b_wrapper">
|
|
<img src="/theme_autofly/static/src/assets/card_icon/engine (1) 1.png"
|
|
alt=""/>
|
|
<span class="d-block">
|
|
Automatic
|
|
</span>
|
|
</div>
|
|
<div class="c_b_wrapper">
|
|
<img src="/theme_autofly/static/src/assets/card_icon/fuel-station 1.png"
|
|
alt=""/>
|
|
<span class="d-block">
|
|
Petrol
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="p_c_bottom">
|
|
<span class="price">
|
|
<t t-esc="res_company.currency_id.symbol"/>
|
|
<t t-esc="hot_deal.list_price"/>
|
|
</span>
|
|
<a t-attf-href="/shop/product/#{slug(hot_deal)}"
|
|
class="btn btn-card">
|
|
More Details
|
|
</a>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</div>
|
|
<div class="row">
|
|
<div class="p_b_wrapper m-auto">
|
|
<a href="/shop"
|
|
class="btn btn-secondary mt-5 mx-auto ">Show more
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|
|
|