Browse Source

[FIX] Bug fixed 'code_backend_theme'

pull/175/head
Ajmal Cybro 4 years ago
parent
commit
1eebaf5ec2
  1. 6
      code_backend_theme/__manifest__.py
  2. 5
      code_backend_theme/doc/RELEASE_NOTES.md
  3. 2
      code_backend_theme/static/src/js/chrome/sidebar.js
  4. 2
      code_backend_theme/static/src/xml/sidebar.xml

6
code_backend_theme/__manifest__.py

@ -25,21 +25,21 @@
"description": """Minimalist and elegant backend theme for Odoo 14, Backend Theme, Theme""",
"summary": "Code Backend Theme V14 is an attractive theme for backend",
"category": "Theme/Backend",
"version": "14.0.1.1.0",
"version": "14.0.1.1.1",
'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'website': "https://www.cybrosys.com",
"depends": ['base', 'web'],
"depends": ['base', 'web', 'mail'],
"data": [
'assets/assets.xml',
'views/icons.xml',
'views/layout.xml',
],
"qweb": [
'static/src/xml/sidebar.xml',
'static/src/xml/styles.xml',
'static/src/xml/top_bar.xml',
'static/src/xml/sidebar.xml',
],
'images': [
'static/description/banner.png',

5
code_backend_theme/doc/RELEASE_NOTES.md

@ -9,3 +9,8 @@ Initial Commit
#### Version 14.0.1.1.0
#### UPDT
Made Responsive
#### 27.07.2021
#### Version 14.0.1.1.1
#### FIX
Template not found issue fixed

2
code_backend_theme/static/src/js/chrome/sidebar.js

@ -6,7 +6,7 @@ odoo.define('code_backend_theme.SideBar', function (require) {
events: _.extend({}, Widget.prototype.events, {
'click .nav-link': '_onAppsMenuItemClicked',
}),
template: "code_backend_theme.SideBar",
template: "code_backend_theme.Sidebar",
init: function (parent, menuData) {
this._super.apply(this, arguments);

2
code_backend_theme/static/src/xml/sidebar.xml

@ -5,7 +5,7 @@
<div class="sidebar_panel" id="sidebar_panel"/>
</t>
</t>
<t t-name="code_backend_theme.SideBar">
<t t-name="code_backend_theme.Sidebar">
<div class="sidebar">
<div class="sidebar_close">
<a id="closeSidebar" style="cursor: pointer;">

Loading…
Cancel
Save