2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Pad on tasks',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'category': 'Project',
|
|
|
|
'description': """
|
|
|
|
This module adds a PAD in all project form views.
|
|
|
|
=================================================
|
|
|
|
""",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/project-management',
|
2018-01-16 06:58:15 +01:00
|
|
|
'depends': [
|
|
|
|
'project',
|
|
|
|
'pad'
|
|
|
|
],
|
|
|
|
'data': [
|
|
|
|
'views/res_config_settings_views.xml',
|
|
|
|
'views/project_views.xml'
|
|
|
|
],
|
|
|
|
'auto_install': True,
|
|
|
|
}
|