10 lines
310 B
Python
10 lines
310 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') |