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.
 
 
 
 
 

14 lines
636 B

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<!--Inherited website_sales product template for adding the is_index check box -->
<template id="website_index" inherit_id="website_sale.product" name="Web Index" customize_show="True">
<xpath expr="//div[@id='o_wsale_cta_wrapper']" position="before">
<t t-if="user">
<input type="checkbox" t-att-checked="product.is_index" id="is_index" class="is_index"/>
<span><b>Is Indexed</b></span><br/>
<input type="hidden" class="product" t-att-value="product.id"/>
</t>
</xpath>
</template>
</odoo>