14 lines
416 B
Python
14 lines
416 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import http
|
|
from odoo.http import request
|
|
|
|
|
|
class V2ServicesController(http.Controller):
|
|
|
|
@http.route('/services', type='http', auth='public', website=True)
|
|
def services_page(self, **kwargs):
|
|
"""Render the Services page."""
|
|
return request.render('theme_aakriti_v2.v2_services_template', {
|
|
'page_title': 'Services - Aakriti Events',
|
|
})
|