ODOO
menus
top right menu
- create web page as we explain before
- then we can add the item to the list as bellow
<?xml version="1.0" encoding="utf-8"?>
<templates id='template' xmlspace='preserve'>
<!--Extends UserMenu -->
<t t-extend="UserMenu" t-name="UserMenu">
<t t-jquery="li.divider" t-operation="after">
<li><a href="/new_item" >New Item</a></li>
</t>
</t>
</templates>
<templates id='template' xmlspace='preserve'>
<!--Extends UserMenu -->
<t t-extend="UserMenu" t-name="UserMenu">
<t t-jquery="li.divider" t-operation="after">
<li><a href="/new_item" >New Item</a></li>
</t>
</t>
</templates>
// here we have to create the web page by "/new_item" link
No comments:
Post a Comment