35 lines
791 B
Python
35 lines
791 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "OSPP SLIDE",
|
|
|
|
'summary': """
|
|
OSPP SLIDE""",
|
|
|
|
'description': """
|
|
OSPP SLIDE
|
|
""",
|
|
|
|
'author': "Zhiguo Yuan",
|
|
'website': "https://www.newbizpaas.cn",
|
|
|
|
# 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': ['ospp_base'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
# 'security/ir.model.access.csv',
|
|
'views/views.xml',
|
|
'views/templates.xml',
|
|
],
|
|
# only loaded in demonstration mode
|
|
'demo': [
|
|
'demo/demo.xml',
|
|
],
|
|
}
|