1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- 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 resumé of your employees',
'description':
"""
Certification and Skills for HR
===============================
This module adds certification to resumé for employees.
""",
'depends': ['hr_skills', 'survey'],
'data': [
'views/hr_templates.xml',
'data/hr_resume_data.xml',
],
'qweb': [
'static/src/xml/resume_templates.xml',
],
'auto_install': True,
'license': 'LGPL-3',
}
|