forked from alaguraj/odoo-testing-addons
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
{
|
|
'name': 'Dine360 Dashboard',
|
|
'version': '1.0.2',
|
|
'license': 'LGPL-3',
|
|
'category': 'Website',
|
|
'summary': 'Redirect login to home and show icon grid',
|
|
'depends': ['base', 'web', 'auth_signup', 'website', 'website_sale'],
|
|
'data': [
|
|
'views/home_template.xml',
|
|
'views/login_templates.xml',
|
|
'views/web_title_template.xml',
|
|
'views/website_logo.xml',
|
|
'views/shop_template.xml',
|
|
'data/branding_data.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'dine360_dashboard/static/src/css/theme_variables.css',
|
|
'dine360_dashboard/static/src/css/home_menu.css',
|
|
'dine360_dashboard/static/src/js/chennora_title.js',
|
|
'dine360_dashboard/static/src/xml/navbar_extension.xml',
|
|
],
|
|
'web.assets_frontend': [
|
|
'dine360_dashboard/static/src/css/theme_variables.css',
|
|
'dine360_dashboard/static/src/css/login_style.css',
|
|
'dine360_dashboard/static/src/css/website_style.css',
|
|
'dine360_dashboard/static/src/css/shop_style.css',
|
|
],
|
|
'web.assets_common': [
|
|
'dine360_dashboard/static/src/css/theme_variables.css',
|
|
],
|
|
'point_of_sale._assets_pos': [
|
|
'dine360_dashboard/static/src/css/pos_style.css',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': True,
|
|
}
|