summaryrefslogtreecommitdiff
path: root/addons/pad_project/__manifest__.py
blob: 4163202748ddac15f03fd4190ceafdb656bfb462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

{
    'name': 'Pad on tasks',
    'category': 'Services/Project',
    'description': """
This module adds a PAD in all project form views.
=================================================
    """,
    'depends': [
        'project',
        'pad'
    ],
    'data': [
        'views/res_config_settings_views.xml',
        'views/project_views.xml',
        'views/project_portal_templates.xml',
        'views/project_portal_assets.xml'
    ],
    'auto_install': True,
    'license': 'LGPL-3',
}