mirror of
https://github.com/SARL-PACIFIC-ERP/odoo-sh-test.git
synced 2025-06-25 09:32:22 +00:00
31 lines
711 B
Python
31 lines
711 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Awesome Dashboard",
|
|
|
|
'summary': """
|
|
Starting module for "Discover the JS framework, chapter 2: Build a dashboard"
|
|
""",
|
|
|
|
'description': """
|
|
Starting module for "Discover the JS framework, chapter 2: Build a dashboard"
|
|
""",
|
|
|
|
'author': "Odoo",
|
|
'website': "https://www.odoo.com/",
|
|
'category': 'Tutorials/AwesomeDashboard',
|
|
'version': '0.1',
|
|
'application': True,
|
|
'installable': True,
|
|
'depends': ['base', 'web', 'mail', 'crm'],
|
|
|
|
'data': [
|
|
'views/views.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'awesome_dashboard/static/src/**/*',
|
|
],
|
|
},
|
|
'license': 'AGPL-3'
|
|
}
|