OSPPCloudEnterprise3/addons/ospp_base/__manifest__.py

46 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
{
'name': "OSPP BASE",
'summary': """
OSPP BASE""",
'description': """
OSPP BASE
""",
'author': "Zhiguo Yuan",
'website': "https://www.newbizpaas.cn",
'license': 'LGPL-3',
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Website/eLearning',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base', 'website_slides'],
# always loaded
'data': [
'security/security_groups.xml',
'security/ir.model.access.csv',
'data/ir_sequence_data.xml',
'views/views.xml',
'views/templates.xml',
],
'assets': {
'web.assets_backend': [
'ospp_base/static/src/js/web_title.js',
'ospp_base/static/src/js/user_menu.js'
],
},
# only loaded in demonstration mode
'demo': [
'demo/demo.xml',
],
}