mirror of
https://github.com/SARL-PACIFIC-ERP/odoo-sh-test.git
synced 2025-06-25 17:42:22 +00:00
11 lines
311 B
Python
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')
|