diff --git a/code_backend_theme_enterprise/README.rst b/code_backend_theme_enterprise/README.rst
new file mode 100755
index 000000000..6f1359abd
--- /dev/null
+++ b/code_backend_theme_enterprise/README.rst
@@ -0,0 +1,51 @@
+.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg
+ :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html
+ :alt: License: LGPL-3
+
+Code Backend Theme Enterprise
+=============================
+* Code Backend Theme module for Odoo 17 enterprise editions. This is a Minimalist and Elegant Backend Theme for Odoo 17. This theme will change your Old Experience to a New Experience with Odoo.
+
+Configuration
+-------------
+ - www.odoo.com/documentation/17.0/setup/install.html
+ - Install our custom addon
+
+Company
+-------
+* `Cybrosys Techno Solutions `__
+
+License
+-------
+General Public License, Version 3 (LGPL v3).
+(https://www.gnu.org/licenses/lgpl-3.0-standalone.html)
+
+Credits
+-------
+Developers: (V15) Abhijith KP @ Cybrosys,
+ (V16) Ahammed Harshad P @ Cybrosys,
+ (V17) ADVAITH BG @ Cybrosys
+Contact: odoo@cybrosys.com
+
+
+Contacts
+--------
+* Mail Contact : odoo@cybrosys.com
+* Website : https://cybrosys.com
+
+Bug Tracker
+-----------
+Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
+
+Maintainer
+--------
+This module is maintained by Cybrosys Technologies.
+
+For support and more information, please visit https://www.cybrosys.com
+
+.. image:: https://cybrosys.com/images/logo.png
+ :target: https://cybrosys.com"
+
+Further information
+-----------------
+HTML Description: ``__
diff --git a/code_backend_theme_enterprise/__init__.py b/code_backend_theme_enterprise/__init__.py
new file mode 100644
index 000000000..2f4c42681
--- /dev/null
+++ b/code_backend_theme_enterprise/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies()
+# Author: ADVAITH BG (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+from .hooks import test_pre_init_hook, test_post_init_hook
diff --git a/code_backend_theme_enterprise/__manifest__.py b/code_backend_theme_enterprise/__manifest__.py
new file mode 100644
index 000000000..b71cdc68a
--- /dev/null
+++ b/code_backend_theme_enterprise/__manifest__.py
@@ -0,0 +1,67 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies()
+# Author: ADVAITH BG (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+{
+ "name": "Code Backend Theme Enterprise",
+ "version": "17.0.1.0.0",
+ "category": "Themes/Backend",
+ "summary": "Minimalist and elegant backend theme for Odoo Enterprise",
+ "description": """Minimalist and elegant backend theme for Odoo Backend""",
+ "author": "Cybrosys Techno Solutions",
+ "company": "Cybrosys Techno Solutions",
+ "maintainer": "Cybrosys Techno Solutions",
+ "website": "https://www.cybrosys.com",
+ "depends": ["web_enterprise", "web"],
+ "data": [
+ 'views/base_menus.xml',
+ ],
+ 'assets': {
+ 'web.assets_backend': [
+ "code_backend_theme_enterprise/static/src/xml/"
+ "top_bar_templates.xml",
+ "code_backend_theme_enterprise/static/src/xml/"
+ "sidebar_templates.xml",
+ "code_backend_theme_enterprise/static/src/scss/sidebar.scss",
+ "code_backend_theme_enterprise/static/src/js/chrome/sidebar.js",
+ "code_backend_theme_enterprise/static/src/js/fields/colors.js",
+ "code_backend_theme_enterprise/static/src/scss/theme_accent.scss",
+ "code_backend_theme_enterprise/static/src/scss/datetimepicker.scss",
+ "code_backend_theme_enterprise/static/src/scss/theme.scss",
+ "https://fonts.googleapis.com/css2?family=Poppins:wght@400;700"
+ "&display=swap",
+ ],
+ 'web.assets_frontend': [
+ "code_backend_theme_enterprise/static/src/scss/login.scss",
+ "https://fonts.googleapis.com/css2?family=Poppins:wght@400;700"
+ "&display=swap",
+ ],
+ },
+ 'images': [
+ 'static/description/banner.jpg',
+ 'static/description/theme_screenshot.jpg',
+ ],
+ 'license': 'LGPL-3',
+ 'installable': True,
+ 'auto_install': False,
+ 'application': False,
+ 'pre_init_hook': 'test_pre_init_hook',
+ 'post_init_hook': 'test_post_init_hook',
+}
diff --git a/code_backend_theme_enterprise/doc/RELEASE_NOTES.md b/code_backend_theme_enterprise/doc/RELEASE_NOTES.md
new file mode 100644
index 000000000..e9b2849dd
--- /dev/null
+++ b/code_backend_theme_enterprise/doc/RELEASE_NOTES.md
@@ -0,0 +1,5 @@
+## Module
+#### 18.12.2023
+#### Version 17.0.1.0.0
+##### ADD
+Initial commit for Code Backend Theme Enterprise
diff --git a/code_backend_theme_enterprise/hooks.py b/code_backend_theme_enterprise/hooks.py
new file mode 100644
index 000000000..2cd5df8a7
--- /dev/null
+++ b/code_backend_theme_enterprise/hooks.py
@@ -0,0 +1,721 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies()
+# Author: ADVAITH BG (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+import base64
+from odoo.tools.misc import file_path
+
+
+def test_pre_init_hook(cr):
+ """
+ Hooks for Changing Menu Web_icon
+ """
+ menu_item = cr['ir.ui.menu'].search([('parent_id', '=', False)])
+ for menu in menu_item:
+ if menu.name == 'Contacts':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/contacts'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Link Tracker':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/link.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Dashboards':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/dashboard'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Sales':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/sales.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Accounting':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/accounting.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Inventory':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/inventory'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Purchase':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/purchase'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Calendar':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/calendar'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'CRM':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/crm.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Note':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/notes.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'To-do':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/notes.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Website':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/website.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Point of Sale':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/pos.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Manufacturing':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/manufacturing.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Repairs':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/repair.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Email Marketing':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/email'
+ '-marketing.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'SMS Marketing':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/sms.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Project':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/project.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Surveys':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/survey.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Employees':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/employee'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Recruitment':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/recruitment.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Attendances':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/attendance.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Time Off':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/time-off'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Expenses':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/expense.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Maintenance':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/maintenance.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Live Chat':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/chat.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Lunch':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/restaurant.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Fleet':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/traffic.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Timesheets':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/timesheet'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Events':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/token.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'eLearning':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/elearning'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Members':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/user.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+
+ if menu.name == 'Subscriptions':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/subscription.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Documents':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/documents'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Rental':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/rental.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Marketing Automation':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/marketing_automation.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'IoT':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/iot.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Helpdesk':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/help.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Planning':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/planning'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Appraisal':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/appraisal'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Consolidation':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/consolidation.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Payroll':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/payroll.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Barcode':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/barcode.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Quality':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/quality.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'PLM':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/plm.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Field Service':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/field'
+ '-service.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Data Cleaning':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/clean'
+ '-code.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Approvals':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/approvals'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Referrals':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/referrals'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Discuss':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/discuss.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Social Marketing':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/like.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+
+
+def test_post_init_hook(cr):
+ """
+ post init hook
+ """
+ menu_item = cr['ir.ui.menu'].search([('parent_id', '=', False)])
+ for menu in menu_item:
+ if menu.name == 'Contacts':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/contacts'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Link Tracker':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/link.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Dashboards':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/dashboard'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Sales':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/sales.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Accounting':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/accounting.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Inventory':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/inventory'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Purchase':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/purchase'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Calendar':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/calendar'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'CRM':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/crm.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Note':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/notes.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'To-do':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/notes.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Website':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/website.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Point of Sale':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/pos.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Manufacturing':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/manufacturing.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Repairs':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/repair.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Email Marketing':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/email'
+ '-marketing.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'SMS Marketing':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/sms.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Project':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/project.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Surveys':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/survey.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Employees':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/employee'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Recruitment':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/recruitment.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Attendances':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/attendance.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Time Off':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/time-off'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Expenses':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/expense.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Maintenance':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/maintenance.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Live Chat':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/chat.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Lunch':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/restuarant.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Fleet':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/traffic.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Timesheets':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/timesheet'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Events':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/token.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'eLearning':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/elearning'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Members':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/user.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+
+ if menu.name == 'Subscriptions':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/subscription.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Documents':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/documents'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Rental':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/rental.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Marketing Automation':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/marketing_automation.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'IoT':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/iot.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Helpdesk':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/help.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Planning':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/planning'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Appraisal':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/appraisal'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Consolidation':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons'
+ '/consolidation.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Payroll':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/payroll.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Barcode':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/barcode.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Quality':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/quality.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'PLM':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/plm.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Field Service':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/field'
+ '-service.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Data Cleaning':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/clean'
+ '-code.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Approvals':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/approvals'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Referrals':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/referrals'
+ '.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Discuss':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/discuss.png'
+ )
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
+ if menu.name == 'Social Marketing':
+ img_path = file_path(
+ 'code_backend_theme_enterprise/static/src/img/icons/like.png')
+ menu.write({'web_icon_data': base64.b64encode(open
+ (img_path,
+ "rb").read())})
diff --git a/code_backend_theme_enterprise/requirements.txt b/code_backend_theme_enterprise/requirements.txt
new file mode 100644
index 000000000..e2d3f39af
--- /dev/null
+++ b/code_backend_theme_enterprise/requirements.txt
@@ -0,0 +1 @@
+xmltodict==0.13.0
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/check.png b/code_backend_theme_enterprise/static/description/assets/icons/check.png
new file mode 100644
index 000000000..c8e85f51d
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/check.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/chevron.png b/code_backend_theme_enterprise/static/description/assets/icons/chevron.png
new file mode 100644
index 000000000..2089293d6
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/chevron.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/cogs.png b/code_backend_theme_enterprise/static/description/assets/icons/cogs.png
new file mode 100644
index 000000000..95d0bad62
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/cogs.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/consultation.png b/code_backend_theme_enterprise/static/description/assets/icons/consultation.png
new file mode 100644
index 000000000..8319d4baa
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/consultation.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/ecom-black.png b/code_backend_theme_enterprise/static/description/assets/icons/ecom-black.png
new file mode 100644
index 000000000..a9385ff13
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/ecom-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/education-black.png b/code_backend_theme_enterprise/static/description/assets/icons/education-black.png
new file mode 100644
index 000000000..3eb09b27b
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/education-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/hotel-black.png b/code_backend_theme_enterprise/static/description/assets/icons/hotel-black.png
new file mode 100644
index 000000000..130f613be
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/hotel-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/license.png b/code_backend_theme_enterprise/static/description/assets/icons/license.png
new file mode 100644
index 000000000..a5869797e
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/license.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/lifebuoy.png b/code_backend_theme_enterprise/static/description/assets/icons/lifebuoy.png
new file mode 100644
index 000000000..658d56ccc
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/lifebuoy.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/manufacturing-black.png b/code_backend_theme_enterprise/static/description/assets/icons/manufacturing-black.png
new file mode 100644
index 000000000..697eb0e9f
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/manufacturing-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/pos-black.png b/code_backend_theme_enterprise/static/description/assets/icons/pos-black.png
new file mode 100644
index 000000000..97c0f90c1
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/pos-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/puzzle.png b/code_backend_theme_enterprise/static/description/assets/icons/puzzle.png
new file mode 100644
index 000000000..65cf854e7
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/puzzle.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/restaurant-black.png b/code_backend_theme_enterprise/static/description/assets/icons/restaurant-black.png
new file mode 100644
index 000000000..4a35eb939
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/restaurant-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/service-black.png b/code_backend_theme_enterprise/static/description/assets/icons/service-black.png
new file mode 100644
index 000000000..301ab51cb
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/service-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/trading-black.png b/code_backend_theme_enterprise/static/description/assets/icons/trading-black.png
new file mode 100644
index 000000000..9398ba2f1
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/trading-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/training.png b/code_backend_theme_enterprise/static/description/assets/icons/training.png
new file mode 100644
index 000000000..884ca024d
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/training.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/update.png b/code_backend_theme_enterprise/static/description/assets/icons/update.png
new file mode 100644
index 000000000..ecbc5a01a
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/update.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/user.png b/code_backend_theme_enterprise/static/description/assets/icons/user.png
new file mode 100644
index 000000000..6ffb23d9f
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/user.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/icons/wrench.png b/code_backend_theme_enterprise/static/description/assets/icons/wrench.png
new file mode 100644
index 000000000..6c04dea0f
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/icons/wrench.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/categories.png b/code_backend_theme_enterprise/static/description/assets/misc/categories.png
new file mode 100644
index 000000000..bedf1e0b1
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/categories.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/check-box.png b/code_backend_theme_enterprise/static/description/assets/misc/check-box.png
new file mode 100644
index 000000000..42caf24b9
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/check-box.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/compass.png b/code_backend_theme_enterprise/static/description/assets/misc/compass.png
new file mode 100644
index 000000000..d5fed8faa
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/compass.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/corporate.png b/code_backend_theme_enterprise/static/description/assets/misc/corporate.png
new file mode 100644
index 000000000..2eb13edbf
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/corporate.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/customer-support.png b/code_backend_theme_enterprise/static/description/assets/misc/customer-support.png
new file mode 100644
index 000000000..79efc72ed
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/customer-support.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/cybrosys-logo.png b/code_backend_theme_enterprise/static/description/assets/misc/cybrosys-logo.png
new file mode 100644
index 000000000..cc3cc0ccf
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/cybrosys-logo.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/features.png b/code_backend_theme_enterprise/static/description/assets/misc/features.png
new file mode 100644
index 000000000..b41769f77
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/features.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/logo.png b/code_backend_theme_enterprise/static/description/assets/misc/logo.png
new file mode 100644
index 000000000..478462d3e
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/logo.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/pictures.png b/code_backend_theme_enterprise/static/description/assets/misc/pictures.png
new file mode 100644
index 000000000..56d255fe9
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/pictures.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/pie-chart.png b/code_backend_theme_enterprise/static/description/assets/misc/pie-chart.png
new file mode 100644
index 000000000..426e05244
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/pie-chart.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/right-arrow.png b/code_backend_theme_enterprise/static/description/assets/misc/right-arrow.png
new file mode 100644
index 000000000..730984a06
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/right-arrow.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/star.png b/code_backend_theme_enterprise/static/description/assets/misc/star.png
new file mode 100644
index 000000000..2eb9ab29f
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/star.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/support.png b/code_backend_theme_enterprise/static/description/assets/misc/support.png
new file mode 100644
index 000000000..4f18b8b82
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/support.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/misc/whatsapp.png b/code_backend_theme_enterprise/static/description/assets/misc/whatsapp.png
new file mode 100644
index 000000000..d513a5356
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/misc/whatsapp.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/modules/1.png b/code_backend_theme_enterprise/static/description/assets/modules/1.png
new file mode 100644
index 000000000..5238bdeab
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/modules/1.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/modules/2.png b/code_backend_theme_enterprise/static/description/assets/modules/2.png
new file mode 100644
index 000000000..1ae7cfe3b
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/modules/2.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/modules/3.png b/code_backend_theme_enterprise/static/description/assets/modules/3.png
new file mode 100644
index 000000000..3c3ff1afb
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/modules/3.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/modules/4.png b/code_backend_theme_enterprise/static/description/assets/modules/4.png
new file mode 100644
index 000000000..3fae4631e
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/modules/4.png differ
diff --git a/code_backend_theme_enterprise/static/description/assets/modules/5.gif b/code_backend_theme_enterprise/static/description/assets/modules/5.gif
new file mode 100644
index 000000000..2a5f8e659
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/modules/5.gif differ
diff --git a/code_backend_theme_enterprise/static/description/assets/modules/6.png b/code_backend_theme_enterprise/static/description/assets/modules/6.png
new file mode 100644
index 000000000..7f2815273
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/assets/modules/6.png differ
diff --git a/code_backend_theme_enterprise/static/description/banner.jpg b/code_backend_theme_enterprise/static/description/banner.jpg
new file mode 100644
index 000000000..b9b97d3fe
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/banner.jpg differ
diff --git a/code_backend_theme_enterprise/static/description/icon.png b/code_backend_theme_enterprise/static/description/icon.png
new file mode 100644
index 000000000..50b06fca4
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/icon.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/1.png b/code_backend_theme_enterprise/static/description/images/1.png
new file mode 100644
index 000000000..965988570
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/1.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/Cybrosys R.png b/code_backend_theme_enterprise/static/description/images/Cybrosys R.png
new file mode 100644
index 000000000..da4058087
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/Cybrosys R.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/Poster-modal.psd b/code_backend_theme_enterprise/static/description/images/Poster-modal.psd
new file mode 100644
index 000000000..ad22908b9
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/Poster-modal.psd differ
diff --git a/code_backend_theme_enterprise/static/description/images/baaner.jpg b/code_backend_theme_enterprise/static/description/images/baaner.jpg
new file mode 100644
index 000000000..3cd7a8d69
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/baaner.jpg differ
diff --git a/code_backend_theme_enterprise/static/description/images/capture (1).png b/code_backend_theme_enterprise/static/description/images/capture (1).png
new file mode 100644
index 000000000..8824deafc
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/capture (1).png differ
diff --git a/code_backend_theme_enterprise/static/description/images/check.png b/code_backend_theme_enterprise/static/description/images/check.png
new file mode 100644
index 000000000..c8e85f51d
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/check.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/chevron.png b/code_backend_theme_enterprise/static/description/images/chevron.png
new file mode 100644
index 000000000..2089293d6
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/chevron.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/cogs.png b/code_backend_theme_enterprise/static/description/images/cogs.png
new file mode 100644
index 000000000..95d0bad62
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/cogs.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/consultation.png b/code_backend_theme_enterprise/static/description/images/consultation.png
new file mode 100644
index 000000000..8319d4baa
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/consultation.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/ecom-black.png b/code_backend_theme_enterprise/static/description/images/ecom-black.png
new file mode 100644
index 000000000..a9385ff13
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/ecom-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/education-black.png b/code_backend_theme_enterprise/static/description/images/education-black.png
new file mode 100644
index 000000000..3eb09b27b
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/education-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/email.svg b/code_backend_theme_enterprise/static/description/images/email.svg
new file mode 100644
index 000000000..15291cdc3
--- /dev/null
+++ b/code_backend_theme_enterprise/static/description/images/email.svg
@@ -0,0 +1,33 @@
+
diff --git a/code_backend_theme_enterprise/static/description/images/hotel-black.png b/code_backend_theme_enterprise/static/description/images/hotel-black.png
new file mode 100644
index 000000000..130f613be
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/hotel-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/license.png b/code_backend_theme_enterprise/static/description/images/license.png
new file mode 100644
index 000000000..a5869797e
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/license.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/lifebuoy.png b/code_backend_theme_enterprise/static/description/images/lifebuoy.png
new file mode 100644
index 000000000..658d56ccc
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/lifebuoy.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/manufacturing-black.png b/code_backend_theme_enterprise/static/description/images/manufacturing-black.png
new file mode 100644
index 000000000..697eb0e9f
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/manufacturing-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/phone.svg b/code_backend_theme_enterprise/static/description/images/phone.svg
new file mode 100644
index 000000000..b7bd7f251
--- /dev/null
+++ b/code_backend_theme_enterprise/static/description/images/phone.svg
@@ -0,0 +1,3 @@
+
diff --git a/code_backend_theme_enterprise/static/description/images/photo-capture.png b/code_backend_theme_enterprise/static/description/images/photo-capture.png
new file mode 100644
index 000000000..06c111758
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/photo-capture.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/pngwing.jpg b/code_backend_theme_enterprise/static/description/images/pngwing.jpg
new file mode 100644
index 000000000..b4ff4e91d
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/pngwing.jpg differ
diff --git a/code_backend_theme_enterprise/static/description/images/pos-black.png b/code_backend_theme_enterprise/static/description/images/pos-black.png
new file mode 100644
index 000000000..97c0f90c1
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/pos-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/poster.psd b/code_backend_theme_enterprise/static/description/images/poster.psd
new file mode 100644
index 000000000..281991bda
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/poster.psd differ
diff --git a/code_backend_theme_enterprise/static/description/images/puzzle.png b/code_backend_theme_enterprise/static/description/images/puzzle.png
new file mode 100644
index 000000000..65cf854e7
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/puzzle.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/restaurant-black.png b/code_backend_theme_enterprise/static/description/images/restaurant-black.png
new file mode 100644
index 000000000..4a35eb939
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/restaurant-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/service-black.png b/code_backend_theme_enterprise/static/description/images/service-black.png
new file mode 100644
index 000000000..301ab51cb
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/service-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/star (1) 2.svg b/code_backend_theme_enterprise/static/description/images/star (1) 2.svg
new file mode 100644
index 000000000..5ae9f507a
--- /dev/null
+++ b/code_backend_theme_enterprise/static/description/images/star (1) 2.svg
@@ -0,0 +1,9 @@
+
diff --git a/code_backend_theme_enterprise/static/description/images/support (1) 1.svg b/code_backend_theme_enterprise/static/description/images/support (1) 1.svg
new file mode 100644
index 000000000..7d37a8f30
--- /dev/null
+++ b/code_backend_theme_enterprise/static/description/images/support (1) 1.svg
@@ -0,0 +1,9 @@
+
diff --git a/code_backend_theme_enterprise/static/description/images/support-email.svg b/code_backend_theme_enterprise/static/description/images/support-email.svg
new file mode 100644
index 000000000..eb70370d6
--- /dev/null
+++ b/code_backend_theme_enterprise/static/description/images/support-email.svg
@@ -0,0 +1,6 @@
+
diff --git a/code_backend_theme_enterprise/static/description/images/tick-mark.svg b/code_backend_theme_enterprise/static/description/images/tick-mark.svg
new file mode 100644
index 000000000..2dbb40187
--- /dev/null
+++ b/code_backend_theme_enterprise/static/description/images/tick-mark.svg
@@ -0,0 +1,17 @@
+
diff --git a/code_backend_theme_enterprise/static/description/images/trading-black.png b/code_backend_theme_enterprise/static/description/images/trading-black.png
new file mode 100644
index 000000000..9398ba2f1
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/trading-black.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/training.png b/code_backend_theme_enterprise/static/description/images/training.png
new file mode 100644
index 000000000..884ca024d
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/training.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/update.png b/code_backend_theme_enterprise/static/description/images/update.png
new file mode 100644
index 000000000..ecbc5a01a
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/update.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/user.png b/code_backend_theme_enterprise/static/description/images/user.png
new file mode 100644
index 000000000..6ffb23d9f
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/user.png differ
diff --git a/code_backend_theme_enterprise/static/description/images/v15-banner.jpg b/code_backend_theme_enterprise/static/description/images/v15-banner.jpg
new file mode 100644
index 000000000..263eccea1
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/v15-banner.jpg differ
diff --git a/code_backend_theme_enterprise/static/description/images/whatsapp 1.svg b/code_backend_theme_enterprise/static/description/images/whatsapp 1.svg
new file mode 100644
index 000000000..0bfaf8fc6
--- /dev/null
+++ b/code_backend_theme_enterprise/static/description/images/whatsapp 1.svg
@@ -0,0 +1,9 @@
+
diff --git a/code_backend_theme_enterprise/static/description/images/whatsapp.svg b/code_backend_theme_enterprise/static/description/images/whatsapp.svg
new file mode 100644
index 000000000..b618aea1d
--- /dev/null
+++ b/code_backend_theme_enterprise/static/description/images/whatsapp.svg
@@ -0,0 +1,33 @@
+
diff --git a/code_backend_theme_enterprise/static/description/images/wrench.png b/code_backend_theme_enterprise/static/description/images/wrench.png
new file mode 100644
index 000000000..6c04dea0f
Binary files /dev/null and b/code_backend_theme_enterprise/static/description/images/wrench.png differ
diff --git a/code_backend_theme_enterprise/static/description/index.html b/code_backend_theme_enterprise/static/description/index.html
new file mode 100644
index 000000000..c33277748
--- /dev/null
+++ b/code_backend_theme_enterprise/static/description/index.html
@@ -0,0 +1,1241 @@
+
+
+
+
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Supports:
+
+
+
+
+ Enterprise
+
+
+
+
+
+
+
+
+
+
+
+
+ Availability:
+
+
+
+
+ Odoo Online
+
+
+
+
+
+ Odoo.sh
+
+
+
+
+
+
+
+ On Premise
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The Code Backend Theme V17 Gives You a Fully Modified View with
+ a Full Screen Display.
+ This is a Minimalist and Elegant Backend Theme for Odoo 17.
+ This Theme Will Change Your Old Experience to a New Experience
+ With Odoo.
+ It is a Perfect Choice for Your Odoo Backend and an Attractive
+ Theme for Your Odoo 17.
+ It will Give You a Clean Layout with a New Color Combination and
+ a Modified Font. It has a Sidebar with
+ New App Icons and Company Logo. This Will Change Your Old
+ Kanban, List, and Form Views to A Fully Modified View.
+
+
+
+
+ Please make sure that you install all your apps prior to the
+ installation of this theme.
+
+ Code
+ Backend Theme V17 is an Attractive Theme for Your Odoo
+ 17.
+ This Theme Will Improve Your Experience With
+ Odoo.
+ This is a Minimalist and Elegant Backend Theme for Odoo
+ 17
+ And Can Offer a Perfect Choice for Your Odoo Backend.
+
+
+
+ Modified Structure for All Type Views
+
+
+ New Style for Active Menus, Radio Buttons and
+ Checkboxes
+
+
+ New Color Combination
+
+
+ New Look for All Applications
+
+ A Clean layout and New Font Style
+
+ Sidebar with New Menu Icons
+
+
+
+
+
+
+
+
+ New
+
All-New Menu Design
+
+
+
+ Now
+ take advantage of everything your dashboard
+ has to offer even on the go. Our design are now
+ fully responsive, enabling you to view and
+ manage everything from the comfort of your
+ mobile device. Everything has been designed in a
+ meticulous fashion so that every view snaps
+ itself to fit the size of the device you are
+ using, be it smartphones, tablet or any other
+ portables, our theme adjusts itself to fit the
+ screen size.
+
+
+
+
+
+
+
+
+
+
+
+
+
Easily Access Sidebar Menu
+
+
+
+ Reveal
+ the sidebar menu with just a click. Sidebar menu
+ features all the relevant links to navigate
+ through the application. Hiding the sidebar
+ leaves more space on the main area offering a
+ distraction-free view that lets you focus on
+ what matters the most.
+ Now
+ take advantage of everything your dashboard
+ has to offer even on the go. Our design are now
+ fully responsive, enabling you to view and
+ manage everything from the comfort of your
+ mobile device. Everything has been designed in a
+ meticulous fashion so that every view snaps
+ itself to fit the size of the device you are
+ using, be it smartphones, tablet or any other
+ portables, our theme adjusts itself to fit the
+ screen size.
+
+
+ 01
+
+ Fully responsive
+
+
+ 02
+
+ Fly-out hamburger menu on the left
+
+
+ 03
+
+ Fits perfectly to all screen sizes
+
+
+ 04
+
+ Quick access menu at the bottom in
+ discuss
+
+
+
+
+
+
+
+
+
+
+
+
+
+
List View
+
+
+
+ Code
+ Backend Theme V17 Gives You The Fully Modified
+ List View. This Table Design Gives You More
+ Beauty for Your Odoo Backend. It will Give You a
+ Clean Layout with the New Color Combination and
+ a Modified Font.
+
+
+
+ 01
+
+ Stages are Separated in View
+
+
+
+ 02
+
+ New Color Combination
+
+
+
+ 03
+
+ Modified Font
+
+
+ 04
+
+ Clean Layout
+
+
+ 05
+
+ Buttons with New Colors
+
+
+ 06
+
+ Full Screen View
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Kanban Group View
+
+
+
+ The
+ Code Backend Theme V17 Gives You a Fully
+ Modified Kanban View and Kanban Group View. The
+ Section Wise Separated Stages give a Pleasant
+ Experience And an Extraordinary Design To Your
+ Content Tiles, Making The Tiles Look Great. It
+ will Give You a Clean Layout with the New Color
+ Combination and a Modified Font.
+
+
+ 01
+
+ Stages are Separated in View
+
+
+
+ 02
+
+ New Color Combination
+
+
+
+ 03
+
+ Modified Font
+
+
+ 04
+
+ Clean Layout
+
+
+ 05
+
+ Buttons with New Colors
+
+
+ 06
+
+ Full Screen View
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Form View
+
+
+
+ Code
+ Backend Theme Gives You The Fully Modified Form
+ View with a Full Screen Experience. It will Give
+ You a Clean Layout with the New Color
+ Combination and a Modified Font.
+
+
+
+ 01
+
+ Modified Form Style
+
+
+
+ 02
+
+ New Style for Required Field
+
+
+
+ 03
+
+
+ Full Screen Form View
+
+
+ 04
+
+ New Chatter Style Under Form View
+
+
+ 05
+
+
+ New Looks for Tabs
+
+
+ 06
+
+ New Looks for Status Button
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
01
+
+ Login page
+
+
+
+
+
02
+
+ Group View
+
+
+
+
+
03
+
+ Settings View
+
+
+
+
+
+
+
04
+
+ Discuss Page
+
+
+
+
+
+
+
05
+
+ Product Kanban View
+
+
+
+
+
+
+
06
+
+ Purchase List View
+
+
+
+
+
+
07
+
+ Product View with Smart Buttons
+
+
+
+
+
+
08
+
+ Modified Alert Notifications are Placed on the Right
+ Bottom of Display
+
+
+
+
+
+
09
+
+ Wizards and User Error Popups
+
+
+
+
+
+
+
10
+
+
+ New Looks for The Tabs
+
+
+
+
+
+
11
+
+ Recruitment Kanban View With Ribbons
+
+
+
+
+
+
12
+
+ Sales Kanban View
+
+
+
+
+
+
13
+
+ Modified Kanban View for Employees With New Designed
+ Category Section
+