48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
{
|
|
'name': "custom_template_khmer",
|
|
|
|
'summary': "Short (1 phrase/line) summary of the module's purpose",
|
|
|
|
'description': """
|
|
Allows dynamic customization of:
|
|
- Font Family (Upload .ttf)
|
|
- Menu Header Background (Color or Image)
|
|
- Responsive design for Mobile/Desktop
|
|
- Works on Backend and Website
|
|
""",
|
|
|
|
'author': "My Company",
|
|
'license': 'LGPL-3',
|
|
'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': 'thems and backend',
|
|
'version': '0.1',
|
|
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['web', 'website'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/res_config_settings_views.xml',
|
|
'templates/layout_inherit.xml',
|
|
],
|
|
# only loaded in demonstration mode
|
|
'demo': [
|
|
'demo/demo.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'custom_template_khmer/static/src/scss/custom_theme.css',
|
|
],
|
|
'website.assets_frontend': [
|
|
'custom_template_khmer/static/src/scss/custom_theme.css',
|
|
'custom_template_khmer/static/src/scss/fonts.css',
|
|
],
|
|
},
|
|
}
|
|
|