This question has been flagged
1 Reply
5692 Views

Hi,

     Plz anyone can give me the clear idea regarding URL and routing in building website, I got really confused........

 

Avatar
Discard
Best Answer

Hello Umashankar 

Below is some information for website routing in odoo

Example :

website_sale/templates.xml line 643 

<template id="cart" name="Shopping Cart">

So, this is the template id and the page will be localhost/shop/cart

Now, when you redirect to this page it will trigger the method of that page :

website_sale/controller.main.py line 295

@http.route(['/shop/cart'], type='http', auth="public", website=True)
    def cart(self, **post):

By the http.route you can route trigger the method of some perticuler page.

Hope that this answer will help you.

Please don't hesitate to ask any question regarding this.

If you get the answer as you need then please accept the answer.

Thank You

 

 

 

 

Avatar
Discard
Author

Thanks for the reply Kazim Mirza, but still i have doubts in some concepts, you have given just the overview plz refer this page, http://odoo-80.readthedocs.org/en/latest/howtos/website.html Thanks in advance Kazim Mirza

I know the tuts but you just wanted to know routing so i have gave you an idea about it

I know the tuts but you just wanted to know routing so i have gave you an idea about it. so what you want to know?

Author

I dont get the concept of adding the model name in the URL path , plz give some idea Karim.....