You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							50 lines
						
					
					
						
							2.1 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							50 lines
						
					
					
						
							2.1 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################# | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2021-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |
| #    Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) | |
| # | |
| #    You can modify it under the terms of the GNU LESSER | |
| #    GENERAL PUBLIC LICENSE (LGPL v3), Version 3. | |
| # | |
| #    This program is distributed in the hope that it will be useful, | |
| #    but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | |
| #    GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. | |
| # | |
| #    You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE | |
| #    (LGPL v3) along with this program. | |
| #    If not, see <http://www.gnu.org/licenses/>. | |
| # | |
| ############################################################################# | |
| { | |
|     'name': "Odoo Dynamic Dashboard", | |
|     'version': '16.0.1.0.0', | |
|     'summary': """Create Configurable Dashboards Easily""", | |
|     'description': """Create Configurable Dashboard Dynamically to get the information that are relevant to your business, department, or a specific process or need, Dynamic Dashboard, Dashboard, Dashboard Odoo""", | |
|     'author': 'Cybrosys Techno Solutions', | |
|     'company': 'Cybrosys Techno Solutions', | |
|     'maintainer': 'Cybrosys Techno Solutions', | |
|     'depends': ['base', 'web'], | |
|     'data': [ | |
|         'views/dashboard_view.xml', | |
|         'views/dynamic_block_view.xml', | |
|         'views/dashboard_menu_view.xml', | |
|         'security/ir.model.access.csv', | |
|     ], | |
|     'assets': { | |
|         'web.assets_backend': [ | |
|             'odoo_dynamic_dashboard/static/src/js/dynamic_dashboard.js', | |
|             'odoo_dynamic_dashboard/static/src/scss/style.scss', | |
|             'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.bundle.js', | |
|             'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700', | |
|             'odoo_dynamic_dashboard/static/src/xml/dynamic_dashboard_template.xml', | |
|         ], | |
|     }, | |
|     'images': ['static/description/banner.png'], | |
|     'license': "AGPL-3", | |
|     'installable': True, | |
|     'application': True, | |
| }
 | |
| 
 |