Odoo18-Base/addons/hr_skills_survey/__manifest__.py
2025-03-10 11:12:23 +07:00

29 lines
716 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Skills Certification',
'category': 'Hidden',
'version': '1.0',
'summary': 'Add certification to resume of your employees',
'description':
"""
Certification and Skills for HR
===============================
This module adds certification to resume for employees.
""",
'depends': ['hr_skills', 'survey'],
'data': [
'views/hr_templates.xml',
'data/hr_resume_data.xml',
],
'auto_install': True,
'assets': {
'web.assets_backend': [
'hr_skills_survey/static/src/xml/**/*',
],
},
'license': 'LGPL-3',
}