2026-07-09 16:13:27 +05:30

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',
})