__manifest__.py 694 B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Online Event Booth Sale',
  4. 'category': 'Marketing/Events',
  5. 'version': '1.0',
  6. 'summary': 'Events, sell your booths online',
  7. 'description': """
  8. Use the e-commerce to sell your event booths.
  9. """,
  10. 'depends': ['event_booth_sale', 'website_event_booth', 'website_sale'],
  11. 'data': [
  12. 'views/event_booth_templates.xml',
  13. ],
  14. 'auto_install': True,
  15. 'assets': {
  16. 'web.assets_frontend': [
  17. '/website_event_booth_sale/static/src/js/booth_register.js',
  18. ],
  19. 'web.assets_tests': [
  20. '/website_event_booth_sale/static/tests/tours/**/**.js'
  21. ],
  22. },
  23. 'license': 'LGPL-3',
  24. }