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.
 
 
 
 
 

19 lines
843 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!--This record creates a new menu item with the name "Trading", which when clicked,
will redirect the user to the URL "/trading_page". -->
<record id="menu_trading" model="website.menu">
<field name="name">Trading</field>
<field name="url">/trading_page</field>
<field name="parent_id" ref="website.main_menu"/>
<field name="sequence" type="int">15</field>
</record>
<!--Creates a website menu item called "Investing" with a URL pointing to "/investing_page-->
<record id="menu_investing" model="website.menu">
<field name="name">Investing</field>
<field name="url">/investing_page</field>
<field name="parent_id" ref="website.main_menu"/>
<field name="sequence" type="int">16</field>
</record>
</odoo>