769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
22 lines
539 B
Python
22 lines
539 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Pad on tasks',
|
|
'category': 'Project',
|
|
'description': """
|
|
This module adds a PAD in all project form views.
|
|
=================================================
|
|
""",
|
|
'website': 'https://www.odoo.com/page/project-management',
|
|
'depends': [
|
|
'project',
|
|
'pad'
|
|
],
|
|
'data': [
|
|
'views/res_config_settings_views.xml',
|
|
'views/project_views.xml'
|
|
],
|
|
'auto_install': True,
|
|
}
|