22 lines
917 B
Python
22 lines
917 B
Python
|
|
# -*- 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', {})
|