47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
{
|
|
'name': "cpp_entry",
|
|
|
|
'summary': "Short (1 phrase/line) summary of the module's purpose",
|
|
|
|
'description': """
|
|
Long description of module's purpose
|
|
""",
|
|
|
|
'author': "My Company",
|
|
'website': "https://www.yourcompany.com",
|
|
|
|
# Categories can be used to filter modules in modules listing
|
|
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
|
|
# for the full list
|
|
'category': 'Uncategorized',
|
|
'version': '0.1',
|
|
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['base','web','address_kh','mail','portal','website','youth_and_scholarship'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'security/portal_rules.xml',
|
|
'views/portal_templates.xml',
|
|
'views/dashboard_voter.xml',
|
|
'views/portal_menu.xml',
|
|
'data/gender_data.xml',
|
|
'views/name_party.xml',
|
|
'views/party_list.xml',
|
|
'views/party_voters_detail.xml',
|
|
],
|
|
# only loaded in demonstration mode
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'cpp_entry/static/src/scss/cpp_portal.scss',
|
|
'cpp_entry/static/src/js/cpp_portal.js',
|
|
'cpp_entry/static/src/js/location_cascade.js',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|
|
|