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.

28 lines
906 B

  1. # -*- coding: utf-8 -*-
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  3. {
  4. 'name': "Survey custom matrix",
  5. 'version': '1.0',
  6. 'summary': 'This app allows handling of complex survey forms with options like multiple choice questions, custom matrix etc.',
  7. 'description': """
  8. Custom Matrix Survey.
  9. ================================
  10. """,
  11. 'license': 'OPL-1',
  12. 'author': "Kanak Infosystems LLP.",
  13. 'website': "http://www.kanakinfosystems.com",
  14. 'images': ['static/description/banner.jpg'],
  15. 'category': 'Website',
  16. 'depends': ['survey'],
  17. 'data': [
  18. 'security/ir_model_access.xml',
  19. 'templates/matrix.xml',
  20. 'reports/user_input.xml',
  21. 'views/survey_question.xml',
  22. 'views/survey_user_input.xml',
  23. 'views/survey_user_input_line.xml',
  24. ],
  25. 'application': True,
  26. # 'price': 49,
  27. # 'currency': 'EUR',
  28. }