summaryrefslogtreecommitdiff
path: root/addons/hr_skills_slides/__manifest__.py
blob: 96f0566c9357e361157165721f3eb26abc47db97 (plain)
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 e-learning',
    'category': 'Hidden',
    'version': '1.0',
    'summary': 'Add completed courses to resumé of your employees',
    'description':
        """
E-learning and Skills for HR
============================

This module add completed courses to resumé for employees.
        """,
    'depends': ['hr_skills', 'website_slides'],
    'data': [
        'views/hr_templates.xml',
        'data/hr_resume_data.xml',
    ],
    'qweb': [
        'static/src/xml/resume_templates.xml',
    ],
    'auto_install': True,
    'license': 'LGPL-3',
}