December 2018
Beginner to intermediate
404 pages
10h 14m
English
To get us started with the basics of Odoo web development, we will first implement a simple Hello World web page showcasing the basic concepts and techniques. Imaginative, right?
For our first web page, we only need a controller object.
We will begin adding it in the controllers/hello.py file:
from . import modelsfrom . import controllers
from . import hello
from odoo import http class Hello(http.Controller): @http.route('/helloworld', auth='public') def helloworld(self): ...Read now
Unlock full access