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.

36 lines
968 B

  1. # -*- coding: utf-8 -*-
  2. # © 2016 Michael Fried @ Vividlab (<http://www.vividlab.de>)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. {
  5. 'name': 'Web Timepicker Widget',
  6. 'version': '9.0.1.0.0',
  7. 'author': 'Michael Fried@Vividlab, Odoo Community Association (OCA)',
  8. 'license': 'AGPL-3',
  9. 'category': 'Web',
  10. 'website': 'https://github.com/OCA/Web',
  11. # any module necessary for this one to work correctly
  12. 'depends': [
  13. 'web'
  14. ],
  15. 'css': [
  16. 'static/src/lib/jquery.timerpicker/jquery.timepicker.css',
  17. 'static/src/css/web_widget_timepicker.css'
  18. ],
  19. 'js': [
  20. 'static/src/lib/jquery.timerpicker/jquery.timepicker.js',
  21. 'static/src/js/web_widget_timepicker.js',
  22. ],
  23. 'qweb' : [
  24. 'static/src/xml/web_widget_timepicker.xml'
  25. ],
  26. # always loaded
  27. 'data': [
  28. 'views/web_widget_timepicker_assets.xml'
  29. ],
  30. #Installation options
  31. "installable": True,
  32. }