-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
30 lines (28 loc) · 814 Bytes
/
__manifest__.py
File metadata and controls
30 lines (28 loc) · 814 Bytes
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
27
28
29
30
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Skills e-learning',
'category': 'Hidden',
'version': '1.0',
'summary': 'Add completed courses to resume of your employees',
'description':
"""
E-learning and Skills for HR
============================
This module add completed courses to resume for employees.
""",
'depends': ['hr_skills', 'website_slides'],
'data': [
'views/hr_employee_views.xml',
'views/hr_templates.xml',
'data/hr_resume_data.xml',
],
'auto_install': True,
'assets': {
'web.assets_backend': [
'hr_skills_slides/static/src/scss/**/*',
'hr_skills_slides/static/src/xml/**/*',
],
},
'license': 'LGPL-3',
}