__manifest__.py 532 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Quiz and Meet on community',
  5. 'category': 'Marketing/Events',
  6. 'sequence': 1007,
  7. 'version': '1.0',
  8. 'summary': 'Quiz and Meet on community route',
  9. 'website': 'https://www.odoo.com/app/events',
  10. 'depends': [
  11. 'website_event_meet',
  12. 'website_event_track_quiz',
  13. ],
  14. 'data': [
  15. 'views/event_meet_templates.xml',
  16. ],
  17. 'auto_install': True,
  18. 'license': 'LGPL-3',
  19. }