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.
49 lines
2.2 KiB
49 lines
2.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- This XML template customizes the appearance and functionality of the cart popover in the website -->
|
|
<template id="coffee_cart_popover" inherit_id="website_sale.cart_popover"
|
|
name="Coffee Cart Popover">
|
|
<xpath expr="." position="replace">
|
|
<div>
|
|
<div class="items-cart">
|
|
<t t-foreach="website_sale_order.website_order_line"
|
|
t-as="order_line">
|
|
<div class="item">
|
|
<div class="item-img">
|
|
<img t-attf-src="data:image/png;base64,{{order_line.product_id.image_1920}}"
|
|
alt=""/>
|
|
</div>
|
|
<div class="item-desc">
|
|
<p class="item-cartname">
|
|
<t t-esc="order_line.product_id.name"/>
|
|
</p>
|
|
<p class="item-cartabout">
|
|
<t t-esc="order_line.product_id.categ_id.name"/>
|
|
</p>
|
|
<p class="item-rate">
|
|
<t t-esc="order_line.price_unit"/>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</div>
|
|
<div class="cart-border"/>
|
|
<div class="row list-row cart-box-total">
|
|
<p class="list">Subtotal:</p>
|
|
<p class="amount">
|
|
<t t-esc="website_sale_order.amount_total"/>
|
|
</p>
|
|
</div>
|
|
<div class="cart-buttons">
|
|
<a href="/shop/cart"
|
|
t-attf-class="nav-link">
|
|
<button class="cartview">View Cart</button>
|
|
</a>
|
|
<a href="/shop/payment">
|
|
<button class="cartcheckout">checkout</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|