__manifest__.py 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Dashboards',
  5. 'version': '1.0',
  6. 'category': 'Productivity',
  7. 'sequence': 225,
  8. 'summary': 'Build your own dashboards',
  9. 'description': """
  10. Lets the user create a custom dashboard.
  11. ========================================
  12. Allows users to create custom dashboard.
  13. """,
  14. 'depends': ['spreadsheet_dashboard'],
  15. 'data': [
  16. 'security/ir.model.access.csv',
  17. 'views/board_views.xml',
  18. ],
  19. 'application': False,
  20. 'assets': {
  21. 'web.assets_backend': [
  22. 'board/static/src/**/*.scss',
  23. 'board/static/src/**/*.js',
  24. 'board/static/src/**/*.xml',
  25. ],
  26. 'web.qunit_suite_tests': [
  27. 'board/static/tests/**/*',
  28. ('remove', 'board/static/tests/mobile/**/*'), # mobile test
  29. ],
  30. 'web.qunit_mobile_suite_tests': [
  31. 'board/static/tests/mobile/**/*',
  32. ],
  33. },
  34. 'license': 'LGPL-3',
  35. }