21 lines
594 B
Python
21 lines
594 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Planner',
|
|
'category': 'Extra Tools',
|
|
'summary': 'Help to configure application',
|
|
'version': '1.0',
|
|
'description': """Application Planner""",
|
|
'depends': ['web'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'security/web_planner_security.xml',
|
|
'views/web_planner_templates.xml',
|
|
'views/web_planner_views.xml',
|
|
],
|
|
'qweb': ['static/src/xml/web_planner.xml'],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
}
|