Files
design-themes/theme_beauty/models/theme_beauty.py
T
2021-05-11 15:56:19 +02:00

14 lines
479 B
Python

from odoo import models
class ThemeBeauty(models.AbstractModel):
_inherit = 'theme.utils'
def _theme_beauty_post_copy(self, mod):
# Change preset for colors
self.enable_view('theme_common.option_colors_03_variables')
# Change preset for fonts
self.enable_view('website.option_font_title_06_variables')
self.enable_view('website.option_font_body_06_variables')
self.enable_view('website.option_font_button_06_variables')