Files
design-themes/theme_real_estate/models/theme_real_estate.py
T
2021-05-20 10:57:04 +02:00

14 lines
464 B
Python

from odoo import models
class ThemeRealEstate(models.AbstractModel):
_inherit = 'theme.utils'
def _theme_real_estate_post_copy(self, mod):
# Color preset
self.enable_view('theme_common.option_colors_05_variables')
# Font preset
self.enable_view('website.option_font_body_03_variables')
self.enable_view('website.option_font_title_03_variables')
self.enable_view('website.option_font_button_03_variables')