I have this code from a custom module that I want to add as an inherited view. However, the view I want to assign it to is website.homepage. When I do it this way, a different tree is created with the inherited view instead of assigning it to the already existing one. Any idea what might be happening?
<odoo>
<data>
<record id="alx_al_website" model="ir.ui.view">
<field name="name">(CUSTOM) - landing page</field>
<field name="type">qweb</field>
<field name="inherit_id" ref="website.homepage"/>
<field name="priority" eval="1000"/>
<field name="website_id" ref="website.default_website"/>
<field name="arch" type="xml">
<xpath expr="//div[@id='wrap']" position="replace">
<div><p>hello world</p></div>
</xpath>
</field>
</record>
</data>
</odoo>