diff --git a/code_backend_theme/README.rst b/code_backend_theme/README.rst
new file mode 100644
index 000000000..e4ab29a31
--- /dev/null
+++ b/code_backend_theme/README.rst
@@ -0,0 +1,49 @@
+.. 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
+==================
+* Code Backend Theme module for Odoo 18 community editions. This is a Minimalist
+and Elegant Backend Theme for Odoo 18. This theme will change your
+Old Experience to a New Experience with Odoo.
+
+Configuration
+-------
+ - www.odoo.com/documentation/18.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
+-------
+Developer: (V18) Swaraj R, (V17) ADVAITH BG, 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/__init__.py b/code_backend_theme/__init__.py
new file mode 100644
index 000000000..1d229480e
--- /dev/null
+++ b/code_backend_theme/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Swaraj R (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/__manifest__.py b/code_backend_theme/__manifest__.py
new file mode 100644
index 000000000..b2a399414
--- /dev/null
+++ b/code_backend_theme/__manifest__.py
@@ -0,0 +1,64 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Swaraj R (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",
+ "version": "18.0.1.0.0",
+ "category": "Themes/Backend",
+ "summary": "Code Backend Theme is an attractive theme for backend",
+ "description": """Minimalist and elegant theme for Odoo backend""",
+ "author": "Cybrosys Techno Solutions",
+ "company": "Cybrosys Techno Solutions",
+ "maintainer": "Cybrosys Techno Solutions",
+ "website": "https://www.cybrosys.com",
+ "depends": ["web", "mail"],
+ "data": [
+ "views/layout_templates.xml",
+ "views/base_menus.xml",
+ ],
+ "assets": {
+ "web.assets_backend": [
+ "code_backend_theme/static/src/xml/settings_templates.xml",
+ "code_backend_theme/static/src/xml/top_bar_templates.xml",
+ "code_backend_theme/static/src/scss/theme_accent.scss",
+ "code_backend_theme/static/src/scss/navigation_bar.scss",
+ "code_backend_theme/static/src/scss/datetimepicker.scss",
+ "code_backend_theme/static/src/scss/theme.scss",
+ "code_backend_theme/static/src/scss/sidebar.scss",
+ "code_backend_theme/static/src/js/fields/colors.js",
+ 'code_backend_theme/static/src/js/web_navbar_appmenu'
+ '/webNavbarAppMenu.js',
+ ],
+ "web.assets_frontend": [
+ "code_backend_theme/static/src/scss/login.scss",
+ ],
+ },
+ "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/doc/RELEASE_NOTES.md b/code_backend_theme/doc/RELEASE_NOTES.md
new file mode 100644
index 000000000..f8227347a
--- /dev/null
+++ b/code_backend_theme/doc/RELEASE_NOTES.md
@@ -0,0 +1,5 @@
+## Module
+#### 09.10.2024
+#### Version 18.0.1.0.0
+##### ADD
+Initial commit for Code Backend Theme
diff --git a/code_backend_theme/hooks.py b/code_backend_theme/hooks.py
new file mode 100644
index 000000000..aa540d10d
--- /dev/null
+++ b/code_backend_theme/hooks.py
@@ -0,0 +1,407 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Swaraj R (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.modules import get_module_resource
+
+
+def test_pre_init_hook(cr):
+ """pre init hook"""
+ menu_item = cr['ir.ui.menu'].search([('parent_id', '=', False)])
+ for menu in menu_item:
+ if menu.name == 'Contacts':
+ img_path = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Link Tracker.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Dashboards':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Dashboards.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Sales':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Sales.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Invoicing':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Invoicing.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Inventory':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Inventory.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Purchase':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Purchase.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Calendar':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Calendar.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'CRM':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'CRM.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'To-do':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Note.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Website':
+ img_path = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Point of Sale.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Manufacturing':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Manufacturing.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Repairs':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Repairs.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Email Marketing':
+ img_path = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'SMS Marketing.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Project':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Project.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Surveys':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Surveys.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Employees':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Employees.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Recruitment':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Recruitment.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Attendances':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Attendances.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Time Off':
+ img_path = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Expenses.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Maintenance':
+ img_path = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Live Chat.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Lunch':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Lunch.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Fleet':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Fleet.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Timesheets':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Timesheets.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Events':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Events.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'eLearning':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'eLearning.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Members':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Members.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 = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Link Tracker.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Dashboards':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Dashboards.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Sales':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Sales.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name in ('Invoicing', 'Accounting'):
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Invoicing.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Inventory':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Inventory.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Purchase':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Purchase.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Calendar':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Calendar.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'CRM':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'CRM.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Note':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Note.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Website':
+ img_path = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Point of Sale.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Manufacturing':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Manufacturing.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Repairs':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Repairs.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Email Marketing':
+ img_path = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'SMS Marketing.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Project':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Project.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Surveys':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Surveys.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Employees':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Employees.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Recruitment':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Recruitment.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Attendances':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Attendances.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Time Off':
+ img_path = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Expenses.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Maintenance':
+ img_path = get_module_resource(
+ 'code_backend_theme', '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 = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Live Chat.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Lunch':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Lunch.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Fleet':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Fleet.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Timesheets':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Timesheets.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Events':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Events.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'eLearning':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'eLearning.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
+ if menu.name == 'Members':
+ img_path = get_module_resource(
+ 'code_backend_theme', 'static', 'src', 'img',
+ 'icons', 'Members.png')
+ menu.write({'web_icon_data': base64.b64encode(
+ open(img_path, "rb").read())})
diff --git a/code_backend_theme/static/description/assets/icons/check.png b/code_backend_theme/static/description/assets/icons/check.png
new file mode 100644
index 000000000..c8e85f51d
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/check.png differ
diff --git a/code_backend_theme/static/description/assets/icons/chevron.png b/code_backend_theme/static/description/assets/icons/chevron.png
new file mode 100644
index 000000000..2089293d6
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/chevron.png differ
diff --git a/code_backend_theme/static/description/assets/icons/cogs.png b/code_backend_theme/static/description/assets/icons/cogs.png
new file mode 100644
index 000000000..95d0bad62
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/cogs.png differ
diff --git a/code_backend_theme/static/description/assets/icons/consultation.png b/code_backend_theme/static/description/assets/icons/consultation.png
new file mode 100644
index 000000000..8319d4baa
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/consultation.png differ
diff --git a/code_backend_theme/static/description/assets/icons/ecom-black.png b/code_backend_theme/static/description/assets/icons/ecom-black.png
new file mode 100644
index 000000000..a9385ff13
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/ecom-black.png differ
diff --git a/code_backend_theme/static/description/assets/icons/education-black.png b/code_backend_theme/static/description/assets/icons/education-black.png
new file mode 100644
index 000000000..3eb09b27b
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/education-black.png differ
diff --git a/code_backend_theme/static/description/assets/icons/hotel-black.png b/code_backend_theme/static/description/assets/icons/hotel-black.png
new file mode 100644
index 000000000..130f613be
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/hotel-black.png differ
diff --git a/code_backend_theme/static/description/assets/icons/license.png b/code_backend_theme/static/description/assets/icons/license.png
new file mode 100644
index 000000000..a5869797e
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/license.png differ
diff --git a/code_backend_theme/static/description/assets/icons/lifebuoy.png b/code_backend_theme/static/description/assets/icons/lifebuoy.png
new file mode 100644
index 000000000..658d56ccc
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/lifebuoy.png differ
diff --git a/code_backend_theme/static/description/assets/icons/manufacturing-black.png b/code_backend_theme/static/description/assets/icons/manufacturing-black.png
new file mode 100644
index 000000000..697eb0e9f
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/manufacturing-black.png differ
diff --git a/code_backend_theme/static/description/assets/icons/pos-black.png b/code_backend_theme/static/description/assets/icons/pos-black.png
new file mode 100644
index 000000000..97c0f90c1
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/pos-black.png differ
diff --git a/code_backend_theme/static/description/assets/icons/puzzle.png b/code_backend_theme/static/description/assets/icons/puzzle.png
new file mode 100644
index 000000000..65cf854e7
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/puzzle.png differ
diff --git a/code_backend_theme/static/description/assets/icons/restaurant-black.png b/code_backend_theme/static/description/assets/icons/restaurant-black.png
new file mode 100644
index 000000000..4a35eb939
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/restaurant-black.png differ
diff --git a/code_backend_theme/static/description/assets/icons/service-black.png b/code_backend_theme/static/description/assets/icons/service-black.png
new file mode 100644
index 000000000..301ab51cb
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/service-black.png differ
diff --git a/code_backend_theme/static/description/assets/icons/trading-black.png b/code_backend_theme/static/description/assets/icons/trading-black.png
new file mode 100644
index 000000000..9398ba2f1
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/trading-black.png differ
diff --git a/code_backend_theme/static/description/assets/icons/training.png b/code_backend_theme/static/description/assets/icons/training.png
new file mode 100644
index 000000000..884ca024d
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/training.png differ
diff --git a/code_backend_theme/static/description/assets/icons/update.png b/code_backend_theme/static/description/assets/icons/update.png
new file mode 100644
index 000000000..ecbc5a01a
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/update.png differ
diff --git a/code_backend_theme/static/description/assets/icons/user.png b/code_backend_theme/static/description/assets/icons/user.png
new file mode 100644
index 000000000..6ffb23d9f
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/user.png differ
diff --git a/code_backend_theme/static/description/assets/icons/wrench.png b/code_backend_theme/static/description/assets/icons/wrench.png
new file mode 100644
index 000000000..6c04dea0f
Binary files /dev/null and b/code_backend_theme/static/description/assets/icons/wrench.png differ
diff --git a/code_backend_theme/static/description/assets/misc/categories.png b/code_backend_theme/static/description/assets/misc/categories.png
new file mode 100644
index 000000000..bedf1e0b1
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/categories.png differ
diff --git a/code_backend_theme/static/description/assets/misc/check-box.png b/code_backend_theme/static/description/assets/misc/check-box.png
new file mode 100644
index 000000000..42caf24b9
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/check-box.png differ
diff --git a/code_backend_theme/static/description/assets/misc/compass.png b/code_backend_theme/static/description/assets/misc/compass.png
new file mode 100644
index 000000000..d5fed8faa
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/compass.png differ
diff --git a/code_backend_theme/static/description/assets/misc/corporate.png b/code_backend_theme/static/description/assets/misc/corporate.png
new file mode 100644
index 000000000..2eb13edbf
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/corporate.png differ
diff --git a/code_backend_theme/static/description/assets/misc/customer-support.png b/code_backend_theme/static/description/assets/misc/customer-support.png
new file mode 100644
index 000000000..79efc72ed
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/customer-support.png differ
diff --git a/code_backend_theme/static/description/assets/misc/cybrosys-logo.png b/code_backend_theme/static/description/assets/misc/cybrosys-logo.png
new file mode 100644
index 000000000..cc3cc0ccf
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/cybrosys-logo.png differ
diff --git a/code_backend_theme/static/description/assets/misc/features.png b/code_backend_theme/static/description/assets/misc/features.png
new file mode 100644
index 000000000..b41769f77
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/features.png differ
diff --git a/code_backend_theme/static/description/assets/misc/logo.png b/code_backend_theme/static/description/assets/misc/logo.png
new file mode 100644
index 000000000..478462d3e
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/logo.png differ
diff --git a/code_backend_theme/static/description/assets/misc/pictures.png b/code_backend_theme/static/description/assets/misc/pictures.png
new file mode 100644
index 000000000..56d255fe9
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/pictures.png differ
diff --git a/code_backend_theme/static/description/assets/misc/pie-chart.png b/code_backend_theme/static/description/assets/misc/pie-chart.png
new file mode 100644
index 000000000..426e05244
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/pie-chart.png differ
diff --git a/code_backend_theme/static/description/assets/misc/right-arrow.png b/code_backend_theme/static/description/assets/misc/right-arrow.png
new file mode 100644
index 000000000..730984a06
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/right-arrow.png differ
diff --git a/code_backend_theme/static/description/assets/misc/star.png b/code_backend_theme/static/description/assets/misc/star.png
new file mode 100644
index 000000000..2eb9ab29f
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/star.png differ
diff --git a/code_backend_theme/static/description/assets/misc/support.png b/code_backend_theme/static/description/assets/misc/support.png
new file mode 100644
index 000000000..4f18b8b82
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/support.png differ
diff --git a/code_backend_theme/static/description/assets/misc/whatsapp.png b/code_backend_theme/static/description/assets/misc/whatsapp.png
new file mode 100644
index 000000000..d513a5356
Binary files /dev/null and b/code_backend_theme/static/description/assets/misc/whatsapp.png differ
diff --git a/code_backend_theme/static/description/assets/modules/1.png b/code_backend_theme/static/description/assets/modules/1.png
new file mode 100644
index 000000000..5238bdeab
Binary files /dev/null and b/code_backend_theme/static/description/assets/modules/1.png differ
diff --git a/code_backend_theme/static/description/assets/modules/2.png b/code_backend_theme/static/description/assets/modules/2.png
new file mode 100644
index 000000000..1ae7cfe3b
Binary files /dev/null and b/code_backend_theme/static/description/assets/modules/2.png differ
diff --git a/code_backend_theme/static/description/assets/modules/3.png b/code_backend_theme/static/description/assets/modules/3.png
new file mode 100644
index 000000000..3c3ff1afb
Binary files /dev/null and b/code_backend_theme/static/description/assets/modules/3.png differ
diff --git a/code_backend_theme/static/description/assets/modules/4.png b/code_backend_theme/static/description/assets/modules/4.png
new file mode 100644
index 000000000..3fae4631e
Binary files /dev/null and b/code_backend_theme/static/description/assets/modules/4.png differ
diff --git a/code_backend_theme/static/description/assets/modules/5.gif b/code_backend_theme/static/description/assets/modules/5.gif
new file mode 100644
index 000000000..2a5f8e659
Binary files /dev/null and b/code_backend_theme/static/description/assets/modules/5.gif differ
diff --git a/code_backend_theme/static/description/assets/modules/6.png b/code_backend_theme/static/description/assets/modules/6.png
new file mode 100644
index 000000000..7f2815273
Binary files /dev/null and b/code_backend_theme/static/description/assets/modules/6.png differ
diff --git a/code_backend_theme/static/description/banner.jpg b/code_backend_theme/static/description/banner.jpg
new file mode 100644
index 000000000..95c54923f
Binary files /dev/null and b/code_backend_theme/static/description/banner.jpg differ
diff --git a/code_backend_theme/static/description/icon.png b/code_backend_theme/static/description/icon.png
new file mode 100644
index 000000000..0fffab04f
Binary files /dev/null and b/code_backend_theme/static/description/icon.png differ
diff --git a/code_backend_theme/static/description/images/1.png b/code_backend_theme/static/description/images/1.png
new file mode 100644
index 000000000..965988570
Binary files /dev/null and b/code_backend_theme/static/description/images/1.png differ
diff --git a/code_backend_theme/static/description/images/Cybrosys R.png b/code_backend_theme/static/description/images/Cybrosys R.png
new file mode 100644
index 000000000..da4058087
Binary files /dev/null and b/code_backend_theme/static/description/images/Cybrosys R.png differ
diff --git a/code_backend_theme/static/description/images/Poster-modal.psd b/code_backend_theme/static/description/images/Poster-modal.psd
new file mode 100644
index 000000000..ad22908b9
Binary files /dev/null and b/code_backend_theme/static/description/images/Poster-modal.psd differ
diff --git a/code_backend_theme/static/description/images/banner.jpg b/code_backend_theme/static/description/images/banner.jpg
new file mode 100644
index 000000000..95c54923f
Binary files /dev/null and b/code_backend_theme/static/description/images/banner.jpg differ
diff --git a/code_backend_theme/static/description/images/capture (1).png b/code_backend_theme/static/description/images/capture (1).png
new file mode 100644
index 000000000..8824deafc
Binary files /dev/null and b/code_backend_theme/static/description/images/capture (1).png differ
diff --git a/code_backend_theme/static/description/images/check.png b/code_backend_theme/static/description/images/check.png
new file mode 100644
index 000000000..c8e85f51d
Binary files /dev/null and b/code_backend_theme/static/description/images/check.png differ
diff --git a/code_backend_theme/static/description/images/chevron.png b/code_backend_theme/static/description/images/chevron.png
new file mode 100644
index 000000000..2089293d6
Binary files /dev/null and b/code_backend_theme/static/description/images/chevron.png differ
diff --git a/code_backend_theme/static/description/images/cogs.png b/code_backend_theme/static/description/images/cogs.png
new file mode 100644
index 000000000..95d0bad62
Binary files /dev/null and b/code_backend_theme/static/description/images/cogs.png differ
diff --git a/code_backend_theme/static/description/images/consultation.png b/code_backend_theme/static/description/images/consultation.png
new file mode 100644
index 000000000..8319d4baa
Binary files /dev/null and b/code_backend_theme/static/description/images/consultation.png differ
diff --git a/code_backend_theme/static/description/images/ecom-black.png b/code_backend_theme/static/description/images/ecom-black.png
new file mode 100644
index 000000000..a9385ff13
Binary files /dev/null and b/code_backend_theme/static/description/images/ecom-black.png differ
diff --git a/code_backend_theme/static/description/images/education-black.png b/code_backend_theme/static/description/images/education-black.png
new file mode 100644
index 000000000..3eb09b27b
Binary files /dev/null and b/code_backend_theme/static/description/images/education-black.png differ
diff --git a/code_backend_theme/static/description/images/email.svg b/code_backend_theme/static/description/images/email.svg
new file mode 100644
index 000000000..15291cdc3
--- /dev/null
+++ b/code_backend_theme/static/description/images/email.svg
@@ -0,0 +1,33 @@
+
diff --git a/code_backend_theme/static/description/images/hotel-black.png b/code_backend_theme/static/description/images/hotel-black.png
new file mode 100644
index 000000000..130f613be
Binary files /dev/null and b/code_backend_theme/static/description/images/hotel-black.png differ
diff --git a/code_backend_theme/static/description/images/license.png b/code_backend_theme/static/description/images/license.png
new file mode 100644
index 000000000..a5869797e
Binary files /dev/null and b/code_backend_theme/static/description/images/license.png differ
diff --git a/code_backend_theme/static/description/images/lifebuoy.png b/code_backend_theme/static/description/images/lifebuoy.png
new file mode 100644
index 000000000..658d56ccc
Binary files /dev/null and b/code_backend_theme/static/description/images/lifebuoy.png differ
diff --git a/code_backend_theme/static/description/images/manufacturing-black.png b/code_backend_theme/static/description/images/manufacturing-black.png
new file mode 100644
index 000000000..697eb0e9f
Binary files /dev/null and b/code_backend_theme/static/description/images/manufacturing-black.png differ
diff --git a/code_backend_theme/static/description/images/phone.svg b/code_backend_theme/static/description/images/phone.svg
new file mode 100644
index 000000000..b7bd7f251
--- /dev/null
+++ b/code_backend_theme/static/description/images/phone.svg
@@ -0,0 +1,3 @@
+
diff --git a/code_backend_theme/static/description/images/photo-capture.png b/code_backend_theme/static/description/images/photo-capture.png
new file mode 100644
index 000000000..06c111758
Binary files /dev/null and b/code_backend_theme/static/description/images/photo-capture.png differ
diff --git a/code_backend_theme/static/description/images/pngwing.jpg b/code_backend_theme/static/description/images/pngwing.jpg
new file mode 100644
index 000000000..b4ff4e91d
Binary files /dev/null and b/code_backend_theme/static/description/images/pngwing.jpg differ
diff --git a/code_backend_theme/static/description/images/pos-black.png b/code_backend_theme/static/description/images/pos-black.png
new file mode 100644
index 000000000..97c0f90c1
Binary files /dev/null and b/code_backend_theme/static/description/images/pos-black.png differ
diff --git a/code_backend_theme/static/description/images/poster.psd b/code_backend_theme/static/description/images/poster.psd
new file mode 100644
index 000000000..281991bda
Binary files /dev/null and b/code_backend_theme/static/description/images/poster.psd differ
diff --git a/code_backend_theme/static/description/images/puzzle.png b/code_backend_theme/static/description/images/puzzle.png
new file mode 100644
index 000000000..65cf854e7
Binary files /dev/null and b/code_backend_theme/static/description/images/puzzle.png differ
diff --git a/code_backend_theme/static/description/images/restaurant-black.png b/code_backend_theme/static/description/images/restaurant-black.png
new file mode 100644
index 000000000..4a35eb939
Binary files /dev/null and b/code_backend_theme/static/description/images/restaurant-black.png differ
diff --git a/code_backend_theme/static/description/images/service-black.png b/code_backend_theme/static/description/images/service-black.png
new file mode 100644
index 000000000..301ab51cb
Binary files /dev/null and b/code_backend_theme/static/description/images/service-black.png differ
diff --git a/code_backend_theme/static/description/images/star (1) 2.svg b/code_backend_theme/static/description/images/star (1) 2.svg
new file mode 100644
index 000000000..5ae9f507a
--- /dev/null
+++ b/code_backend_theme/static/description/images/star (1) 2.svg
@@ -0,0 +1,9 @@
+
diff --git a/code_backend_theme/static/description/images/support (1) 1.svg b/code_backend_theme/static/description/images/support (1) 1.svg
new file mode 100644
index 000000000..7d37a8f30
--- /dev/null
+++ b/code_backend_theme/static/description/images/support (1) 1.svg
@@ -0,0 +1,9 @@
+
diff --git a/code_backend_theme/static/description/images/support-email.svg b/code_backend_theme/static/description/images/support-email.svg
new file mode 100644
index 000000000..eb70370d6
--- /dev/null
+++ b/code_backend_theme/static/description/images/support-email.svg
@@ -0,0 +1,6 @@
+
diff --git a/code_backend_theme/static/description/images/tick-mark.svg b/code_backend_theme/static/description/images/tick-mark.svg
new file mode 100644
index 000000000..2dbb40187
--- /dev/null
+++ b/code_backend_theme/static/description/images/tick-mark.svg
@@ -0,0 +1,17 @@
+
diff --git a/code_backend_theme/static/description/images/trading-black.png b/code_backend_theme/static/description/images/trading-black.png
new file mode 100644
index 000000000..9398ba2f1
Binary files /dev/null and b/code_backend_theme/static/description/images/trading-black.png differ
diff --git a/code_backend_theme/static/description/images/training.png b/code_backend_theme/static/description/images/training.png
new file mode 100644
index 000000000..884ca024d
Binary files /dev/null and b/code_backend_theme/static/description/images/training.png differ
diff --git a/code_backend_theme/static/description/images/update.png b/code_backend_theme/static/description/images/update.png
new file mode 100644
index 000000000..ecbc5a01a
Binary files /dev/null and b/code_backend_theme/static/description/images/update.png differ
diff --git a/code_backend_theme/static/description/images/user.png b/code_backend_theme/static/description/images/user.png
new file mode 100644
index 000000000..6ffb23d9f
Binary files /dev/null and b/code_backend_theme/static/description/images/user.png differ
diff --git a/code_backend_theme/static/description/images/v15-banner.jpg b/code_backend_theme/static/description/images/v15-banner.jpg
new file mode 100644
index 000000000..263eccea1
Binary files /dev/null and b/code_backend_theme/static/description/images/v15-banner.jpg differ
diff --git a/code_backend_theme/static/description/images/whatsapp 1.svg b/code_backend_theme/static/description/images/whatsapp 1.svg
new file mode 100644
index 000000000..0bfaf8fc6
--- /dev/null
+++ b/code_backend_theme/static/description/images/whatsapp 1.svg
@@ -0,0 +1,9 @@
+
diff --git a/code_backend_theme/static/description/images/whatsapp.svg b/code_backend_theme/static/description/images/whatsapp.svg
new file mode 100644
index 000000000..b618aea1d
--- /dev/null
+++ b/code_backend_theme/static/description/images/whatsapp.svg
@@ -0,0 +1,33 @@
+
diff --git a/code_backend_theme/static/description/images/wrench.png b/code_backend_theme/static/description/images/wrench.png
new file mode 100644
index 000000000..6c04dea0f
Binary files /dev/null and b/code_backend_theme/static/description/images/wrench.png differ
diff --git a/code_backend_theme/static/description/index.html b/code_backend_theme/static/description/index.html
new file mode 100644
index 000000000..d25bf2f7f
--- /dev/null
+++ b/code_backend_theme/static/description/index.html
@@ -0,0 +1,1199 @@
+
+
+
+
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Supports:
+
+
+ Community
+
+
+
+
+ Availability:
+
+
+ Odoo Online
+
+
+ Odoo.sh
+
+
+ On Premise
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The Code Backend Theme V18 Gives You a Fully Modified View with
+ a Full Screen Display.
+ This is a Minimalist and Elegant Backend Theme for Odoo 18.
+ 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 18.
+ 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 V18 is an Attractive Theme for Your Odoo
+ 18.
+ This Theme Will Improve Your Experience With
+ Odoo.
+ This is a Minimalist and Elegant Backend Theme for Odoo
+ 18
+ 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 V18 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 V18 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
+