mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
16 lines
461 B
Python
16 lines
461 B
Python
from odoo import models
|
|
|
|
|
|
class ThemeBewise(models.AbstractModel):
|
|
_inherit = 'theme.utils'
|
|
|
|
def _theme_bewise_post_copy(self, mod):
|
|
# For compatibility
|
|
# self.enable_asset('theme_common.compatibility_saas_10_2')
|
|
|
|
self.disable_view('website.footer_custom')
|
|
self.enable_view('website.template_footer_headline')
|
|
|
|
self.enable_asset('website.ripple_effect_scss')
|
|
self.enable_asset('website.ripple_effect_js')
|