feat: implement theme_prime and theme_vibrant_marketplace with comprehensive assets, custom snippets, and core frontend logic.(ver 17 not upgrate yet)

This commit is contained in:
hoangvv
2026-08-13 15:07:18 +07:00
parent e7e005e11e
commit 860cf9cb0f
658 changed files with 45849 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2019-Present Droggol Infotech Private Limited. (<https://www.droggol.com/>)
from odoo import api, models
class ThemePrime(models.AbstractModel):
_inherit = 'theme.utils'
@api.model
def _reset_default_config(self):
header_styles = list(range(1, 9))
for style in header_styles:
self.disable_view('theme_prime.template_header_style_%s' % style)
footer_styles = list(range(1, 11))
for style in footer_styles:
self.disable_view('theme_prime.template_footer_style_%s' % style)
super()._reset_default_config()