__manifest__.py 785 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Online Task Submission',
  5. 'category': 'Website/Website',
  6. 'summary': 'Add a task suggestion form to your website',
  7. 'version': '1.0',
  8. 'description': """
  9. Generate tasks in Project app from a form published on your website. This module requires the use of the *Form Builder* module (available in Odoo Enterprise) in order to build the form.
  10. """,
  11. 'depends': ['website', 'project'],
  12. 'data': [
  13. 'data/website_form_project_data.xml',
  14. ],
  15. 'installable': True,
  16. 'auto_install': True,
  17. 'assets': {
  18. 'website.assets_editor': [
  19. 'website_form_project/static/src/**/*',
  20. ],
  21. },
  22. 'license': 'LGPL-3',
  23. }