__manifest__.py 716 B

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Skills Certification',
  5. 'category': 'Hidden',
  6. 'version': '1.0',
  7. 'summary': 'Add certification to resume of your employees',
  8. 'description':
  9. """
  10. Certification and Skills for HR
  11. ===============================
  12. This module adds certification to resume for employees.
  13. """,
  14. 'depends': ['hr_skills', 'survey'],
  15. 'data': [
  16. 'views/hr_templates.xml',
  17. 'data/hr_resume_data.xml',
  18. ],
  19. 'auto_install': True,
  20. 'assets': {
  21. 'web.assets_backend': [
  22. 'hr_skills_survey/static/src/xml/**/*',
  23. ],
  24. },
  25. 'license': 'LGPL-3',
  26. }