Hi, I want to add a new menu for a model in the portal user interface.
The issue is that I have created the necesary template, added it to the manifest (and the portal dependency) and still not appearing. Why? Every help would be apreciated.
Here is my code:
```
odoo>
        	template id="portal_my_home" inherit_id="portal.portal_my_home">
            		xpath expr="//div[hasclass('o_portal_docs')]" position="inside">
                			t t-call="portal.portal_docs_entry">
                    				t t-set="url">/my/presupuesto
                    				t t-set="title">Presupuesto
                			t>
            		xpath>
        	template>
odoo>
```
