Skip to Content
Menu
This question has been flagged
1 Reply
2825 Views

Hello.

I have installed this module (on Odoo), and I have added a company as a free member.

But now I don't know how can I publish this information on the Odoo website. I don't find how can I add a page with this information.

Googling, I have found that if I add /members to my website URL, I can see the member I have added.

I have the following question: How can I know which automatic page an app creates (the .zip file contains no user guide)?

Is there some place to list, as the admin, the pages at my Odoo website? Because I see that I can create pages, but if I don't add them to a menu/link, they're hidden.

Thanks in advance!

Avatar
Discard
Best Answer

Hello.  You can look in the .py files within controller, usually in controller/main.py.  Look for the '@route' statements.  For example, taken from addons/website_membership/controllers/main.py:

@http.route(['/members/<partner_id>'], type='http', auth="public", website=True)


Avatar
Discard