diff --git a/code_backend_theme/README.rst b/code_backend_theme/README.rst new file mode 100644 index 0000000..6f5405b --- /dev/null +++ b/code_backend_theme/README.rst @@ -0,0 +1,40 @@ +Code Backend Theme +================== +* Code Backend Theme module for Odoo 14 community editions + +Installation +============ + - www.odoo.com/documentation/14.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/14.0/legal/licenses/licenses.html) + +Company +------- +* 'Cybrosys Techno Solutions '__ + +Credits +------- +* 'Cybrosys Techno Solutions '__ + +Contacts +-------- +* Mail Contact : odoo@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 + +Further information +=================== +HTML Description: ``__ + diff --git a/code_backend_theme/__init__.py b/code_backend_theme/__init__.py new file mode 100644 index 0000000..eb7442d --- /dev/null +++ b/code_backend_theme/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 post_init_hook + + diff --git a/code_backend_theme/__manifest__.py b/code_backend_theme/__manifest__.py new file mode 100644 index 0000000..3e29707 --- /dev/null +++ b/code_backend_theme/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +{ + "name": "Code Backend Theme V18", + "summary": "Minimalist and elegant backend theme for Odoo 18", + "description": """Attractive and modern backend theme for Odoo 18""", + "category": "Themes/Backend", + "version": "18.0.1.0.0", + "author": "Cybrosys Techno Solutions", + "company": "Cybrosys Techno Solutions", + "maintainer": "Cybrosys Techno Solutions", + "website": "https://www.cybrosys.com", + "license": "LGPL-3", + "depends": ["base", "web", "mail", "account"], # add 'account' if you patch its dashboard + "assets": { + "web.assets_backend": [ + # "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/basic_fields.js", + "code_backend_theme/static/src/js/fields/graph.js", + "code_backend_theme/static/src/js/chrome/sidebar.js", + "code_backend_theme/static/src/js/chrome/sidebar_menu.js", + ], + "web.assets_frontend": [ + "code_backend_theme/static/src/scss/login.scss", + ], + "web.qweb": [ + "code_backend_theme/static/src/xml/sidebar.xml", + "code_backend_theme/static/src/xml/styles.xml", + "code_backend_theme/static/src/xml/top_bar.xml", + ], + }, + "images": [ + "static/description/banner.png", + "static/description/theme_screenshot.png", + ], + + "post_init_hook": "post_init_hook", + "installable": True, + "application": False, + "auto_install": False, +} diff --git a/code_backend_theme/assets/assets.xml b/code_backend_theme/assets/assets.xml new file mode 100644 index 0000000..8d5607c --- /dev/null +++ b/code_backend_theme/assets/assets.xml @@ -0,0 +1,25 @@ + + +