__manifest__.py 715 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Hr Recruitment Interview Forms",
  4. 'version': '1.0',
  5. 'category': 'Human Resources',
  6. 'summary': 'Surveys',
  7. 'description': """
  8. Use interview forms during recruitment process.
  9. This module is integrated with the survey module
  10. to allow you to define interviews for different jobs.
  11. """,
  12. 'depends': ['survey', 'hr_recruitment'],
  13. 'data': [
  14. 'security/hr_recruitment_survey_security.xml',
  15. 'views/hr_job_views.xml',
  16. 'views/hr_applicant_views.xml',
  17. 'views/res_config_setting_views.xml',
  18. ],
  19. 'demo': [
  20. 'data/survey_demo.xml',
  21. 'data/hr_job_demo.xml',
  22. ],
  23. 'license': 'LGPL-3',
  24. }