Last active
June 5, 2020 04:25
-
-
Save aek/d8a3588e1f8c63f96be242f4d6d75b09 to your computer and use it in GitHub Desktop.
Revisions
-
aek revised this gist
Oct 17, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <odoo> <template id="recommended_products_ext" inherit_id="website_sale.recommended_products"> <xpath expr="." position="replace"> <t name="Product" t-name="website_sale.recommended_products"> <xpath expr="//div[@id='product_small_description']" position="before"> -
aek created this gist
Sep 28, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ <?xml version="1.0" encoding="utf-8"?> <odoo> <template id="recommended_products_ext" inherit_id="id="website_sale.recommended_products"> <xpath expr="." position="replace"> <t name="Product" t-name="website_sale.recommended_products"> <xpath expr="//div[@id='product_small_description']" position="before"> <div class="container mt32" t-if="product.alternative_product_ids"> <h3>Alternative Products:</h3> <div class="row mt16" style=""> <t t-foreach="product.alternative_product_ids" t-as="alt_product"> <div class="col-md-2 thumbnail" style="width: 170px; height:130px; float:left; display:inline; margin-right: 10px; overflow:hidden;"> <div class="mt16 text-center" style="height: 100%;"> <div t-field="alt_product.image_small" t-options="{'widget': 'image', 'class': 'img-rounded shadow o_alternative_product' }" /> <h5> <a t-attf-href="/shop/product/#{ slug(alt_product) }" style="display: block"> <span t-att-title="alt_product.name" t-field="alt_product.name" class="o_text_overflow" style="display: block;" /> </a> </h5> </div> </div> </t> </div> </div> </xpath> </t> </xpath> </template> </odoo>