68 lines
2.0 KiB
Python
68 lines
2.0 KiB
Python
###################################################################################
|
|
#
|
|
# Copyright (c) 2017-today MuK IT GmbH.
|
|
#
|
|
# This file is part of MuK Backend Theme
|
|
# (see https://mukit.at).
|
|
#
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
|
#
|
|
###################################################################################
|
|
|
|
{
|
|
'name': 'MuK Backend Theme',
|
|
'summary': 'Odoo Community Backend Theme',
|
|
'version': '16.0.1.0.7',
|
|
'category': 'Themes/Backend',
|
|
'license': 'LGPL-3',
|
|
'author': 'MuK IT',
|
|
'website': 'http://www.mukit.at',
|
|
'live_test_url': 'https://mukit.at/r/SgN',
|
|
'contributors': [
|
|
'Mathias Markl <mathias.markl@mukit.at>',
|
|
],
|
|
'depends': [
|
|
'base_setup',
|
|
'web_editor',
|
|
'mail',
|
|
],
|
|
'excludes': [
|
|
'web_enterprise',
|
|
],
|
|
'data': [
|
|
'templates/webclient.xml',
|
|
'views/res_config_settings.xml',
|
|
'views/res_users.xml',
|
|
],
|
|
'assets': {
|
|
'web._assets_primary_variables': [
|
|
(
|
|
'after',
|
|
'web/static/src/scss/primary_variables.scss',
|
|
'muk_web_theme/static/src/colors.scss'
|
|
),
|
|
],
|
|
'web._assets_backend_helpers': [
|
|
'muk_web_theme/static/src/variables.scss',
|
|
'muk_web_theme/static/src/mixins.scss',
|
|
],
|
|
'web.assets_backend': [
|
|
'muk_web_theme/static/src/core/**/*.xml',
|
|
'muk_web_theme/static/src/core/**/*.scss',
|
|
'muk_web_theme/static/src/core/**/*.js',
|
|
'muk_web_theme/static/src/webclient/**/*.xml',
|
|
'muk_web_theme/static/src/webclient/**/*.scss',
|
|
'muk_web_theme/static/src/webclient/**/*.js',
|
|
'muk_web_theme/static/src/views/**/*.scss',
|
|
],
|
|
},
|
|
'images': [
|
|
'static/description/banner.png',
|
|
'static/description/theme_screenshot.png'
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'auto_install': False,
|
|
'uninstall_hook': '_uninstall_cleanup',
|
|
}
|