Odoo modules related to surveys
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.

35 lines
965 B

  1. # -*- coding: utf-8 -*-
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  3. {
  4. 'name': 'Survey input attachment',
  5. 'version': '1.0.0',
  6. 'summary': """
  7. This module provides a new type of question in surveys, that allows to join a file as answer.
  8. """,
  9. 'description': """ """,
  10. 'author': 'Sudokeys',
  11. 'website': 'http://www.sudokeys.com/',
  12. 'license': 'AGPL-3',
  13. 'category': 'Marketing',
  14. 'depends': [
  15. 'survey',
  16. ],
  17. 'data': [
  18. 'templates/upload_file.xml',
  19. 'templates/page.xml',
  20. 'templates/survey_print.xml',
  21. 'views/survey_user_input_line.xml',
  22. ],
  23. 'demo': [],
  24. 'auto_install': False,
  25. 'external_dependencies': [],
  26. 'application': False,
  27. 'css': [],
  28. 'images': ['static/description/survey.jpg'],
  29. 'js': [],
  30. 'installable': True,
  31. 'maintainer': 'Sudokeys',
  32. 'pre_init_hook': '',
  33. 'post_init_hook': '',
  34. 'uninstall_hook': '',
  35. }