odoo-tutorials/awesome_owl/controllers/controllers.py

11 lines
311 B
Python

from odoo import http
from odoo.http import request, route
class OwlPlayground(http.Controller):
@http.route(['/awesome_owl'], type='http', auth='public')
def show_playground(self):
"""
Renders the owl playground page
"""
return request.render('awesome_owl.playground')