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.
17 lines
873 B
17 lines
873 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<templates id="template" xml:space="preserve">
|
|
<!-- Template shows the necessary details about the product-->
|
|
<t t-name="product_web_hover.HoverTemplate" owl="1">
|
|
<t t-if="info">
|
|
<t t-if="info['image_1920']">
|
|
<img t-attf-src="data:image/png;base64,{{info['image_1920']}}" class="img-fluid text-center" style="width: 50px; margin-left: 10px;"/>
|
|
</t>
|
|
<br/><b><t t-esc="info.name"/></b><br/>
|
|
<span>Category:</span><t t-esc="info.categ_id"/><br/>
|
|
<span>Reference:</span><t t-esc="info.code"/><br/>
|
|
<span>Price:</span><t t-esc="info.list_price"/><br/>
|
|
<span>Cost Price:</span><t t-esc="info.standard_price"/><br/>
|
|
<span>Quantity Available:</span><t t-esc="info.qty_available"/>
|
|
</t>
|
|
</t>
|
|
</templates>
|
|
|