odoo/addons/web/__manifest__.py

25 lines
544 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'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',
],
'qweb': [
"static/src/xml/*.xml",
],
'bootstrap': True, # load translations for login screen
}