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.

49 lines
1.3 KiB

2 years ago
2 years ago
  1. # -*- coding: utf-8 -*-
  2. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
  3. {
  4. "name": "Survey answer selection",
  5. "version": "1.0.0",
  6. "summary": """
  7. Mark survey answers as selected
  8. """,
  9. "description": """
  10. This module adds the possibility to select some of the surveys answers in form and list views.
  11. """,
  12. "author": "RemiFr82",
  13. "contributors": "Sudokeys",
  14. "website": "https://remifr82.me",
  15. "license": "LGPL-3",
  16. "category": "Marketing",
  17. # "price": 0,
  18. # "currency": "EUR",
  19. "application": False,
  20. "installable": True,
  21. "auto_install": False,
  22. "pre_init_hook": "",
  23. "post_init_hook": "",
  24. "uninstall_hook": "",
  25. "excludes": [],
  26. "external_dependencies": [],
  27. "depends": [
  28. "survey",
  29. ],
  30. "data": [
  31. "views/survey_survey.xml",
  32. "views/survey_user_input.xml",
  33. ],
  34. "assets": {
  35. "web.assets_backend": [
  36. (
  37. "after",
  38. "web/static/src/views/fields/state_selection/state_selection_field.js",
  39. "survey_select_input/static/src/js/survey_state_selection_field.js",
  40. )
  41. ]
  42. },
  43. "css": [],
  44. "images": [],
  45. "js": [],
  46. "test": [],
  47. "demo": [],
  48. "maintainer": "RemiFr82",
  49. }