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.

38 lines
1.0 KiB

  1. # -*- coding: utf-8 -*-
  2. # © <YEAR(S)> <AUTHOR(S)>
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. {
  5. "name": "Web widget boolean switch",
  6. "summary": "This module add widget to render boolean fields",
  7. "version": "7.0.1.0.0",
  8. "category": "web",
  9. "website": "https://odoo-community.org/",
  10. "author": "<pverkest@anybox>, Odoo Community Association (OCA)",
  11. "license": "AGPL-3",
  12. "application": False,
  13. "installable": True,
  14. "external_dependencies": {
  15. "python": [],
  16. "bin": [],
  17. },
  18. "depends": [
  19. "base",
  20. "web",
  21. ],
  22. "data": [
  23. ],
  24. "js": [
  25. 'static/lib/bootstrap-switch/bootstrap-switch.js',
  26. 'static/src/js/web_widget_boolean_switch.js',
  27. ],
  28. "css": [
  29. 'static/lib/bootstrap-switch/bootstrap-switch.css',
  30. ],
  31. 'qweb': [
  32. 'static/src/xml/web_widget_boolean_switch.xml',
  33. ],
  34. "demo": [
  35. 'demo/res_users_view.xml',
  36. ],
  37. 'description': """""", # TODO: copy README.rst
  38. }