add code_backend_theme from cybrosys
This commit is contained in:
parent
fb8b2fd9e0
commit
612b72778e
136 changed files with 4110 additions and 0 deletions
21
code_backend_theme/static/src/xml/styles.xml
Normal file
21
code_backend_theme/static/src/xml/styles.xml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
<!--Align Invite Button in Settings-->
|
||||
<t t-inherit="web.res_config_invite_users" t-inherit-mode="extension" owl="1">
|
||||
<xpath expr="//div[hasclass('d-flex')]" position="attributes">
|
||||
<attribute name="class">d-flex align-items-center</attribute>
|
||||
</xpath>
|
||||
</t>
|
||||
|
||||
<!--Remove App Icon in Settings-->
|
||||
<t t-inherit="web.SettingsPage" t-inherit-mode="extension" owl="1">
|
||||
<xpath expr="//div[hasclass('tab')]" position="replace">
|
||||
<!-- <div class="tab" t-if="!module.isVisible" t-att-class="(state.selectedTab === module.key and state.search.value.length === 0) ? 'selected': ''" t-att-data-key="module.key" role="tab" t-on-click="() => this.onSettingTabClick(module.key)">-->
|
||||
<!-- <div class="icon d-none d-md-block" t-attf-style="background : url('{{module.imgurl}}') no-repeat center;background-size:contain;"/> <span class="app_name"><t t-esc="module.string"/></span>-->
|
||||
<!-- </div>-->
|
||||
<div class="tab" t-attf-data-key="#{module.key}" role="tab" t-on-click="() => this.onSettingTabClick(module.key)">
|
||||
<span class="app_name"><t t-esc="module.string"/></span>
|
||||
</div>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
||||
95
code_backend_theme/static/src/xml/top_bar.xml
Normal file
95
code_backend_theme/static/src/xml/top_bar.xml
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
<t t-inherit="web.NavBar" t-inherit-mode="extension" owl="1">
|
||||
<xpath expr="//nav[hasclass('o_main_navbar')]" position="replace">
|
||||
<nav class="o_main_navbar d-flex justify-content-between"
|
||||
t-on-dropdown-item-selected="onNavBarDropdownItemSelection"
|
||||
data-command-category="navbar">
|
||||
<div class="d-flex">
|
||||
<div class="top_heading">
|
||||
<!-- Apps Menu -->
|
||||
<t t-call="web.NavBar.AppsMenu">
|
||||
<t t-set="apps" t-value="menuService.getApps()"/>
|
||||
</t>
|
||||
<!-- App Brand -->
|
||||
<DropdownItem
|
||||
t-if="currentApp"
|
||||
href="getMenuItemHref(currentApp)"
|
||||
t-esc="currentApp.name"
|
||||
class="'o_menu_brand d-none d-md-block'"
|
||||
dataset="{ menuXmlid: currentApp.xmlid, section: currentApp.id }"
|
||||
onSelected="() => this.onNavBarDropdownItemSelection(currentApp)"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<!-- Current App Sections -->
|
||||
<div class="d-none d-md-block">
|
||||
<t t-if="currentAppSections.length"
|
||||
t-call="web.NavBar.SectionsMenu">
|
||||
<t t-set="sections" t-value="currentAppSections"/>
|
||||
</t>
|
||||
</div>
|
||||
<div class="d-xs-block d-sm-block d-md-none">
|
||||
<t t-call="web.NavBar.SectionsMenu.MoreDropdown">
|
||||
<t t-set="sections" t-value="currentAppSections"/>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Systray -->
|
||||
<div class="o_menu_systray d-flex" role="menu">
|
||||
<t t-foreach="systrayItems" t-as="item" t-key="item_index">
|
||||
<ErrorHandler onError="error => handleItemError(error, item)">
|
||||
<t t-component="item.Component" t-props="item.props"/>
|
||||
</ErrorHandler>
|
||||
</t>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="sidebar_panel" id="sidebar_panel">
|
||||
<div class="sidebar">
|
||||
<div class="sidebar_close">
|
||||
<a id="closeSidebar" style="cursor: pointer;">
|
||||
<img src="/code_backend_theme/static/src/img/icons/close.png"/>
|
||||
</a>
|
||||
</div>
|
||||
<div class="sidebar_logo">
|
||||
<img src="/code_backend_theme/static/src/img/code_logo.png" class="logo_img"/>
|
||||
</div>
|
||||
<h6 class="sidebar_head">MENU</h6>
|
||||
<ul class="sidebar_menu">
|
||||
<t t-foreach="menuService.getApps()" t-as="app" t-key="app_index">
|
||||
<li data-toggle="tooltip" data-placement="right" t-att-title="app.name">
|
||||
<a role="menuitem"
|
||||
t-attf-href="#menu_id={{app.id}}"
|
||||
class="nav-link">
|
||||
<img class="sidebar_img"
|
||||
t-attf-src="data:image/png;base64,{{app.webIconData}}"/>
|
||||
<span class="sidebar_app_name">
|
||||
<t t-esc="app.name"/>
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
</t>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
</t>
|
||||
<t t-inherit="web.NavBar.AppsMenu" t-inherit-mode="extension" owl="1">
|
||||
<xpath expr="//Dropdown" position="replace">
|
||||
<li class="dropdown">
|
||||
<a id="openSidebar" style="display: block; cursor: pointer;">
|
||||
<i class="fa fa-bars fa-lg"/>
|
||||
</a>
|
||||
<a id="closeSidebar" style="display: none; cursor: pointer;">
|
||||
<i class="fa fa-bars fa-lg"/>
|
||||
</a>
|
||||
</li>
|
||||
</xpath>
|
||||
</t>
|
||||
|
||||
<t t-inherit="web.UserMenu" t-inherit-mode="extension" owl="1">
|
||||
<xpath expr="//span[hasclass('oe_topbar_name')]" position="replace">
|
||||
<div class="oe_topbar_name"/>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
||||
Loading…
Add table
Add a link
Reference in a new issue