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.
66 lines
3.2 KiB
66 lines
3.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="deal" inherit_id="website.snippets" name="Deal Snippet">
|
|
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]" position="inside">
|
|
<t t-snippet="theme_lego.deal_of_the_week_lego"
|
|
t-thumbnail="/theme_lego/static/src/img/snippets/deals-of-the-day-blocks.jpg"/>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="deal_of_the_week_lego" name="Deal Snippets">
|
|
<section class="deal">
|
|
</section>
|
|
</template>
|
|
|
|
<template id="deal_week" name="Deal of the Week">
|
|
<section class="deals">
|
|
<div class="container">
|
|
<div class="main_heading">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-6 col-md-12 col-sm-12 col-12">
|
|
<h3>Deals of the week</h3>
|
|
<p>
|
|
Lorem ipsum dolor sit amet, consectetur
|
|
adipisicing elit, sed do eiusmod tempor
|
|
incididunt ut
|
|
labore et
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-9 col-12">
|
|
<div class="row">
|
|
<t t-foreach="product_ids" t-as="product_id">
|
|
<div class="col-lg-4 col-md-4 col-sm-12">
|
|
<a t-attf-href="/shop/product/#{slug(product_id)}">
|
|
<div class="r_wrapper d-flex">
|
|
<div class="r_img">
|
|
<img t-attf-src="/web/image?model=product.template&field=image_1920&id=#{product_id.id}"
|
|
class="img img-fluid"/>
|
|
</div>
|
|
<div class="p_deatials">
|
|
<h5>
|
|
<span t-if="product_id"
|
|
t-esc="product_id.display_name"/>
|
|
</h5>
|
|
<div class="rate">
|
|
<p t-if="product_id" t-esc="product_id.list_price" t-options="{'widget':'monetary', 'display_currency':website.currency_id}"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</t>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-3">
|
|
<div class="d_right_img">
|
|
<img src="/theme_lego/static/src/img/category/c5.jpg"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|