1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/website_generator/__manifest__.py
2024-12-10 09:04:09 +07:00

26 lines
800 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Website Generator',
'version': '1.0.0',
'category': 'Hidden/Tools',
'summary': 'Import a pre-existing website',
'description': """
Generates a new website in Odoo, with the goal of recreating an external website as close as possible.
""",
'depends': ['website'],
'data': [
'security/ir.model.access.csv',
'cron/cron.xml',
'views/website_generator_views.xml',
'data/website_generator_data.xml',
],
'assets': {
'web.assets_backend': [
'website_generator/static/src/client_actions/*/*',
'website_generator/static/src/systray_items/*',
],
},
'installable': True,
'license': 'OEEL-1',
}