Add theme_3d_systems/controllers/main.py

This commit is contained in:
Huzaifa Inam 2026-08-22 21:24:58 +00:00
parent b9639e2229
commit 03abca9255

View file

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
from odoo import http
from odoo.http import request
class Theme3DSystemsController(http.Controller):
@http.route('/services', type='http', auth='public', website=True, sitemap=True)
def services_page(self, **kwargs):
return request.render('theme_3d_systems.page_services', {})
@http.route('/odoo-solutions', type='http', auth='public', website=True, sitemap=True)
def odoo_solutions_page(self, **kwargs):
return request.render('theme_3d_systems.page_odoo_solutions', {})
@http.route('/portfolio', type='http', auth='public', website=True, sitemap=True)
def portfolio_page(self, **kwargs):
return request.render('theme_3d_systems.page_portfolio', {})
@http.route('/about-us', type='http', auth='public', website=True, sitemap=True)
def about_page(self, **kwargs):
return request.render('theme_3d_systems.page_about', {})