66 lines
2.1 KiB
Python
66 lines
2.1 KiB
Python
|
{
|
||
|
'name': 'MuK Backend Theme',
|
||
|
'summary': 'Odoo Enterprise Backend Theme',
|
||
|
'description': '''
|
||
|
This module offers a mobile compatible design for Odoo Enterprise.
|
||
|
Furthermore it allows the user to define some design preferences.
|
||
|
''',
|
||
|
'version': '18.0.1.2.3',
|
||
|
'category': 'Themes/Backend',
|
||
|
'license': 'LGPL-3',
|
||
|
'author': 'MuK IT',
|
||
|
'website': 'http://www.mukit.at',
|
||
|
'live_test_url': 'https://my.mukit.at/r/f6m',
|
||
|
'contributors': [
|
||
|
'Mathias Markl <mathias.markl@mukit.at>',
|
||
|
],
|
||
|
'depends': [
|
||
|
'web_enterprise',
|
||
|
'muk_web_chatter',
|
||
|
'muk_web_dialog',
|
||
|
'muk_web_appsbar',
|
||
|
'muk_web_colors',
|
||
|
],
|
||
|
'data': [
|
||
|
'templates/web_layout.xml',
|
||
|
'views/res_config_settings.xml',
|
||
|
],
|
||
|
'assets': {
|
||
|
'web._assets_primary_variables': [
|
||
|
(
|
||
|
'before',
|
||
|
'muk_web_colors/static/src/scss/colors.scss',
|
||
|
'muk_web_enterprise_theme/static/src/scss/colors_light.scss'
|
||
|
),
|
||
|
(
|
||
|
'after',
|
||
|
'web/static/src/scss/primary_variables.scss',
|
||
|
'muk_web_enterprise_theme/static/src/scss/variables.scss'
|
||
|
),
|
||
|
],
|
||
|
'web.assets_backend': [
|
||
|
'muk_web_enterprise_theme/static/src/webclient/**/*.xml',
|
||
|
'muk_web_enterprise_theme/static/src/webclient/**/*.js',
|
||
|
'muk_web_enterprise_theme/static/src/views/**/*.scss',
|
||
|
('remove', 'muk_web_enterprise_theme/static/src/**/*.dark.scss'),
|
||
|
],
|
||
|
"web.assets_web_dark": [
|
||
|
(
|
||
|
'after',
|
||
|
'muk_web_colors/static/src/scss/colors.scss',
|
||
|
'muk_web_enterprise_theme/static/src/scss/colors_dark.scss'
|
||
|
),
|
||
|
'muk_web_enterprise_theme/static/src/**/*.dark.scss',
|
||
|
],
|
||
|
},
|
||
|
'images': [
|
||
|
'static/description/banner.png',
|
||
|
'static/description/theme_screenshot.png'
|
||
|
],
|
||
|
'installable': True,
|
||
|
'application': False,
|
||
|
'auto_install': False,
|
||
|
'post_init_hook': '_setup_module',
|
||
|
'uninstall_hook': '_uninstall_cleanup',
|
||
|
}
|