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.
 
 
 
 
 

43 lines
1.9 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Inheriting website product template to display nutrition and allergen information -->
<template inherit_id="website_sale.product"
id="product_nutrition_information"
name="Product Nutrition Information">
<xpath expr="//div[@id='o_product_terms_and_share']" position="before">
<div id="nutritional_info"> <a id="show_nutrition" href="#">Nutrition and Allergen Details</a>
<table class="table">
<thead>
<tr>
<th>
<button type="button"
id="button_nutrition"
class="btn btn-primary">Nutrition Details
</button>
<button type="button"
id="button_ingredients"
class="btn btn-primary">Ingredients
</button>
<button type="button"
id="button_allergy"
class="btn btn-primary">Allergy
</button>
</th>
</tr>
<tr>
<th>
<div id="per_person"><u/></div>
<table>
<thead>
</thead>
</table>
<div id="product_ingredients"/>
<div id="product_allergy"/>
</th>
</tr>
</thead>
</table>
</div>
</xpath>
</template>
</odoo>