Files
design-themes/test_themes/__manifest__.py
T
Xavier-Do 8dc887764b [FIX] *: add explicit license to all manifest
The license is missing in most enterprise manifest so
the decision was taken to make it explicit in all cases.
When not defined, a warning will be triggered starting from
14.0 when falling back on the default LGPL-3.

closes odoo/design-themes#48

Related: odoo/odoo#74245
Related: odoo/enterprise#19862
Signed-off-by: Xavier Dollé (xdo) <xdo@odoo.com>
2021-07-26 13:09:57 +00:00

55 lines
1.4 KiB
Python

{
'name': 'Themes Testing Module',
'version': '1.0',
'category': 'Hidden',
'sequence': 9877,
'summary': 'Create a new website for each Odoo theme for an easy preview.',
'description': """This module will help you to quickly test all the Odoo
themes without having to switch from one theme to another on your website.
It will simply create a new website for each Odoo theme and install every
theme on one website.""",
'depends': [
# CE themes
'theme_default',
# design-themes themes
'theme_anelusia',
'theme_artists',
'theme_avantgarde',
'theme_beauty',
'theme_bewise',
'theme_bistro',
'theme_bookstore',
'theme_clean',
'theme_cobalt',
'theme_enark',
'theme_graphene',
'theme_kea',
'theme_kiddo',
'theme_loftspace',
'theme_monglia',
'theme_nano',
'theme_notes',
'theme_odoo_experts',
'theme_orchid',
'theme_paptic',
'theme_real_estate',
'theme_treehouse',
'theme_vehicle',
'theme_yes',
'theme_zap',
],
'data': [
'views/website_navbar_templates.xml',
],
'installable': True,
'application': False,
'post_init_hook': 'post_init_hook',
'assets': {
'web.assets_frontend': [
'test_themes/static/src/js/navbar.js',
],
},
'license': 'LGPL-3',
}