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.
 
 
 
 
 

22 lines
997 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Inheriting ir.module.module for adding button -->
<record id="module_view_kanban" model="ir.ui.view" >
<field name="name">ir.module.module.view.kanban.inherit.developer.mode</field>
<field name="inherit_id" ref="base.module_view_kanban"/>
<field name="model">ir.module.module</field>
<field name="arch" type="xml">
<xpath expr="//div[hasclass('oe_module_action')]/div"
position="replace">
</xpath>
<xpath expr="//button[@name='button_immediate_install']"
position="after">
<button type="object" class="btn btn-primary pull-right btn-sm"
name="button_immediate_upgrade"
invisible="state != 'installed'"
groups="developer_mode.developer_mode_group_user">Upgrade
</button>
</xpath>
</field>
</record>
</odoo>