odex25_standard/odex25_base/odex25_website/controllers/controllers.py

10 lines
245 B
Python

# -*- coding: utf-8 -*-
from odoo import http
class OdexSupport(http.Controller):
@http.route('/support', type='http', auth='public', website=True)
def support(self, **kw):
return http.request.render("odex25_website.support")