How to inherit base.xml file in odoo 9

482 Views Asked by At

I want to inherit and modify a template t-name = "ListView.row" in base.xml. file

I want to add the another 'td' column and 'th' column . at line no 463 in base. xml .

using my custom module. Thanks, Anand.

1

There are 1 best solutions below

1
On
    <tr t-extend="ListView.row">
        <t t-jquery="t td t" t-operation="after">
        <!-- Add your code here and you can update the xpath as you needed on t-jquery attribute -->
    </tr>