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

38 lines
972 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Website Studio",
'summary': "Display Website Elements in Studio",
'description': """
Studio - Customize Odoo
=======================
This addon allows the user to display all the website forms linked to a certain
model. Furthermore, you can create a new website form or edit an existing one.
""",
'category': 'Hidden',
'version': '1.0',
'depends': [
'web_studio',
'website',
],
'data': [
'views/templates.xml',
'views/views.xml',
],
'auto_install': True,
'license': 'OEEL-1',
'assets': {
'web_studio.studio_assets': [
'website_studio/static/src/**/*',
],
'web.assets_tests': [
'website_studio/static/tests/tours/**/*',
],
'web.qunit_suite_tests': [
'website_studio/static/tests/*.js',
],
}
}