__manifest__.py 761 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Quiz on Live Event Tracks',
  5. 'category': 'Hidden',
  6. 'version': '1.0',
  7. 'summary': 'Bridge module to support quiz features during "live" tracks. ',
  8. 'website': 'https://www.odoo.com/app/events',
  9. 'depends': [
  10. 'website_event_track_live',
  11. 'website_event_track_quiz',
  12. ],
  13. 'data': [
  14. 'views/event_track_templates_page.xml',
  15. ],
  16. 'installable': True,
  17. 'auto_install': True,
  18. 'assets': {
  19. 'web.assets_frontend': [
  20. 'website_event_track_live_quiz/static/src/js/**/*',
  21. 'website_event_track_live_quiz/static/src/xml/**/*',
  22. ],
  23. },
  24. 'license': 'LGPL-3',
  25. }