mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
97683ee283
task-4178021 Part of task-4177975 closes odoo/design-themes#919 Related: odoo/odoo#180736 Signed-off-by: Outagant Mehdi (mou) <mou@odoo.com> Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
13 lines
375 B
Python
13 lines
375 B
Python
from odoo import models
|
|
|
|
|
|
class ThemeBistro(models.AbstractModel):
|
|
_inherit = 'theme.utils'
|
|
|
|
def _theme_bistro_post_copy(self, mod):
|
|
self.enable_view('website.template_header_vertical')
|
|
self.enable_view('website.header_navbar_pills_style')
|
|
|
|
self.enable_asset("website.ripple_effect_scss")
|
|
self.enable_asset("website.ripple_effect_js")
|