# -*- coding: utf-8 -*- { 'name': "SOS Dashboard", 'summary': "Custom Dashboard", 'description': """ Dashboard to see all status in brief UI """, 'author': "Deena", 'website': "https://sosaley.com", # Categories can be used to filter modules in modules listing # Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml # for the full list 'category': 'web', 'version': '17.0.1.0.0', # any module necessary for this one to work correctly 'depends': ['base','web','mail','sos_inventory'], # always loaded 'data': [ # 'security/ir.model.access.csv', 'views/menu.xml', 'views/dashboard_views.xml' ], # only loaded in demonstration mode 'demo': [ 'demo/demo.xml', ], 'assets': { 'web.assets_backend': [ 'sos_dashboard/static/src/js/dashboard.js', 'sos_dashboard/static/src/xml/dashboard_template.xml', 'https://cdn.jsdelivr.net/npm/chart.js', 'sos_dashboard/static/src/css/dashboard.css', ], }, 'installable': True, 'application': True, 'license': 'LGPL-3' }