Hello,
I tried to follow the Building a website tutorial to display the teachers and biographies.
But i don't have the "Hello, world" page; i always have a 404: Page not found when i execute the the link : " http://localhost:8069/academy/academy/ " after paste this code below (academy/controllers.py) and restart my server.
someone can help me please ?
Regards
# -*- coding: utf-8 -*- from odoo import http class Academy(http.Controller): @http.route('/academy/academy/', auth='public') def index(self, **kw): return "Hello, world"
Hope this will helps: https://learnopenerp.blogspot.com/2018/08/odoo-web-controller.html