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': 'Web',
|
|
|
|
'category': 'Hidden',
|
|
|
|
'version': '1.0',
|
|
|
|
'description':
|
|
|
|
"""
|
|
|
|
Odoo Web core module.
|
|
|
|
========================
|
|
|
|
|
|
|
|
This module provides the core of the Odoo Web Client.
|
|
|
|
""",
|
|
|
|
'depends': ['base'],
|
|
|
|
'auto_install': True,
|
|
|
|
'data': [
|
|
|
|
'views/webclient_templates.xml',
|
|
|
|
'views/report_templates.xml',
|
|
|
|
],
|
|
|
|
'qweb': [
|
|
|
|
"static/src/xml/base.xml",
|
|
|
|
"static/src/xml/kanban.xml",
|
|
|
|
"static/src/xml/rainbow_man.xml",
|
|
|
|
"static/src/xml/report.xml",
|
|
|
|
"static/src/xml/web_calendar.xml",
|
|
|
|
],
|
|
|
|
'bootstrap': True, # load translations for login screen
|
|
|
|
}
|