diff --git a/addons/dine360_dashboard/controllers/main.py b/addons/dine360_dashboard/controllers/main.py index e40ddd0..3511074 100644 --- a/addons/dine360_dashboard/controllers/main.py +++ b/addons/dine360_dashboard/controllers/main.py @@ -80,7 +80,12 @@ class ImageHome(Website): # User requested to hide all standard apps and POS/KDS. # Only allow specific menus based on user request + admin tools. - allowed_menus = ['Online Orders', 'Website', 'Table Reservations', 'Uber Integration', 'Apps', 'Settings'] + allowed_menus = ['Online Orders', 'Website', 'Table Reservations', 'Uber Integration', 'Apps', 'Settings', 'Dine360 SaaS'] + + # Hide 'Website' icon from the parent level Dine360Restaurants database + if request.env.cr.dbname and 'Dine360Restaurants' in request.env.cr.dbname: + if 'Website' in allowed_menus: + allowed_menus.remove('Website') filtered_menus = [] seen_names = set() @@ -106,6 +111,8 @@ class ImageHome(Website): 'Table Reservations': 'dine360_dashboard,static/src/img/icons/table_reservation.svg', 'Uber Integration': 'dine360_dashboard,static/src/img/icons/uber_integration.svg', 'Online Orders': 'dine360_dashboard,static/src/img/icons/website.svg', + 'Dine360 SaaS': 'dine360_dashboard,static/src/img/icons/saas.svg', + 'SaaS': 'dine360_dashboard,static/src/img/icons/saas.svg', } # Find the best match in the mapping diff --git a/addons/dine360_dashboard/static/src/css/home_menu.css b/addons/dine360_dashboard/static/src/css/home_menu.css index 22a97be..8201297 100644 --- a/addons/dine360_dashboard/static/src/css/home_menu.css +++ b/addons/dine360_dashboard/static/src/css/home_menu.css @@ -57,15 +57,15 @@ body.o_home_dashboard, .o_app:hover .o_app_icon_container { transform: translateY(-10px) rotate(2deg) !important; background: #ffffff !important; - border-bottom: 2px solid #d6111e !important; + border-bottom: 2px solid #e50000 !important; box-shadow: - 0 20px 25px -5px rgba(214, 17, 30, 0.2), + 0 20px 25px -5px rgba(229, 0, 0, 0.2), 0 10px 10px -5px rgba(23, 20, 34, 0.1) !important; } .o_app_icon_container::before { content: ""; - --pos-accent-red: #d6111e; + --pos-accent-red: #e50000; position: absolute; top: 0; left: 0; @@ -97,7 +97,7 @@ body.o_home_dashboard, } .o_app:hover .o_app_name { - color: #d6111e !important; + color: #e50000 !important; font-weight: 700 !important; } @@ -120,9 +120,9 @@ body.o_home_dashboard, backdrop-filter: blur(15px) !important; -webkit-backdrop-filter: blur(15px); border-radius: 50px !important; - border-color: #d6111e !important; - box-shadow: 0 0 0 3px rgba(214, 17, 30, 0.15) !important; - box-shadow: 0 12px 25px rgba(214, 17, 30, 0.3) !important; + border-color: #e50000 !important; + box-shadow: 0 0 0 3px rgba(229, 0, 0, 0.15) !important; + box-shadow: 0 12px 25px rgba(229, 0, 0, 0.3) !important; } .o_top_item { @@ -139,7 +139,7 @@ body.o_home_dashboard, } .o_top_item:hover { - color: #d6111e !important; + color: #e50000 !important; transform: translateY(-3px); } @@ -152,7 +152,7 @@ body.o_home_dashboard, .o_ai_icon { font-weight: 800; - color: #d6111e !important; + color: #e50000 !important; } .badge_dot { @@ -161,7 +161,7 @@ body.o_home_dashboard, right: 8px; width: 8px; height: 8px; - background: #d6111e !important; + background: #e50000 !important; border-radius: 50% !important; border: 2px solid white !important; } @@ -170,7 +170,7 @@ body.o_home_dashboard, width: 35px !important; height: 35px !important; border-radius: 12px !important; - background: #d6111e !important; + background: #e50000 !important; color: white !important; font-weight: bold !important; } \ No newline at end of file diff --git a/addons/dine360_dashboard/static/src/css/login_style.css b/addons/dine360_dashboard/static/src/css/login_style.css index 5a8d084..06089ef 100644 --- a/addons/dine360_dashboard/static/src/css/login_style.css +++ b/addons/dine360_dashboard/static/src/css/login_style.css @@ -4,7 +4,7 @@ height: 100vh !important; width: 100vw !important; overflow: hidden; - background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/dine360_theme_shivasakthi/static/src/img/shivasakthi-banner-2.webp') !important; + background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/dine360_dashboard/static/src/img/login_bg.png') !important; background-repeat: no-repeat !important; background-position: center center !important; background-size: cover !important; @@ -76,7 +76,7 @@ font-size: 2rem !important; font-weight: 800 !important; margin-bottom: 10px; - color: #d6111e !important; + color: #e50000 !important; } /* Logo */ @@ -94,9 +94,23 @@ /* Form Inputs */ .form-control:focus { - border-color: #FECD4F !important; - box-shadow: 0 0 0 3px rgba(254, 205, 79, 0.2) !important; - background: #ffffff !important; + border-color: #e50000 !important; + box-shadow: 0 0 0 3px rgba(229, 0, 0, 0.25) !important; + background: rgba(255, 255, 255, 0.15) !important; + color: #ffffff !important; +} + +select.form-control, +.form-control select { + color: #ffffff !important; + background-color: rgba(255, 255, 255, 0.1) !important; +} + +select.form-control option, +.form-control select option { + background-color: #1e1e1e !important; + color: #ffffff !important; + padding: 10px !important; } .o_login_form_container label { @@ -132,23 +146,23 @@ /* Login Button with Gradient */ .oe_login_buttons .btn-primary { - background: #FECD4F !important; + background: #e50000 !important; border: none !important; border-radius: 12px !important; padding: 14px !important; font-weight: 700 !important; font-size: 1rem !important; - color: #04121D !important; + color: #ffffff !important; width: 100% !important; transition: all 0.3s ease !important; - box-shadow: 0 4px 15px rgba(254, 205, 79, 0.3) !important; + box-shadow: 0 4px 15px rgba(229, 0, 0, 0.3) !important; } .oe_login_buttons .btn-primary:hover { - background: #04121D !important; - color: #FECD4F !important; + background: #111111 !important; + color: #ffffff !important; transform: translateY(-2px); - box-shadow: 0 8px 20px rgba(254, 205, 79, 0.4) !important; + box-shadow: 0 8px 20px rgba(229, 0, 0, 0.4) !important; } @@ -237,7 +251,7 @@ body.o_custom_login_body .o_login_main_wrapper { } .o_login_footer_custom a { - color: #d6111e; + color: #e50000; text-decoration: none; font-weight: 600; } @@ -255,7 +269,7 @@ body.o_custom_login_body .o_login_main_wrapper { height: 100vh !important; /* width: 100vw !important; */ overflow: hidden !important; - background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/dine360_theme_shivasakthi/static/src/img/shivasakthi-banner-2.webp') no-repeat center center !important; + background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/dine360_dashboard/static/src/img/login_bg.png') no-repeat center center !important; background-size: cover !important; } @@ -277,3 +291,48 @@ body.o_custom_login_body .o_login_main_wrapper { .oe_website_login_container a { color: #ffffff !important; } + +/* Force header yellow elements to brand red on login pages */ +header .btn-primary, +header .btn-warning, +header .btn-secondary, +header a.btn, +header button.btn, +header .bg-warning, +header .btn-order-now, +.o_header_main_nav .btn-warning, +.o_header_main_nav .btn-order-now, +.o_header_main_nav .btn-primary, +.o_header_main_nav a.btn { + background-color: #e50000 !important; + border-color: #e50000 !important; + color: #ffffff !important; +} + +header .btn-outline-primary, +header .btn-outline-warning, +header .btn-outline-secondary { + border-color: #e50000 !important; + color: #e50000 !important; +} + +header .btn-outline-primary:hover, +header .btn-outline-warning:hover, +header .btn-outline-secondary:hover { + background-color: #e50000 !important; + color: #ffffff !important; +} + +header .fa-shopping-cart, +header .fa, +header i, +.o_header_main_nav .fa-shopping-cart, +.o_header_main_nav i { + color: #e50000 !important; +} + +header .cart-badge, +.o_header_main_nav .cart-badge { + background-color: #e50000 !important; + color: #ffffff !important; +} diff --git a/addons/dine360_dashboard/static/src/css/pos_style.css b/addons/dine360_dashboard/static/src/css/pos_style.css index 3e750c4..3f0bc83 100644 --- a/addons/dine360_dashboard/static/src/css/pos_style.css +++ b/addons/dine360_dashboard/static/src/css/pos_style.css @@ -1,17 +1,17 @@ -/* ======================================== +/* ======================================== SHIVASAKTHI RUSH MODE - POS THEME (ULTRA PREMIUM) ======================================== */ :root { --pos-primary: #171422; /* Secondary Dark */ - --pos-secondary: #d6111e; + --pos-secondary: #e50000; /* Main Teal */ --pos-accent-orange: #e66421; /* Biryani Orange */ --pos-accent-gold: #cc9900; /* Tandoor Gold */ - --pos-accent-red: #d6111e; + --pos-accent-red: #e50000; /* Main Teal */ --pos-bg-main: #f8fafc; /* Ultra light gray */ @@ -81,7 +81,7 @@ /* 2. Header & Branding */ .pos .pos-topheader { background: #171422 !important; - border-bottom: 2px solid #d6111e !important; + border-bottom: 2px solid #e50000 !important; color: #fff !important; height: 85px !important; display: flex !important; @@ -154,7 +154,7 @@ } .pos .category-button.active { - background: #d6111e !important; + background: #e50000 !important; color: #ffffff !important; } @@ -285,7 +285,7 @@ display: flex !important; align-items: center !important; justify-content: center !important; - box-shadow: 0 12px 25px rgba(214, 17, 30, 0.3) !important; + box-shadow: 0 12px 25px rgba(229, 0, 0, 0.3) !important; border: none !important; } diff --git a/addons/dine360_dashboard/static/src/css/theme_variables.css b/addons/dine360_dashboard/static/src/css/theme_variables.css index a9504a8..59963db 100644 --- a/addons/dine360_dashboard/static/src/css/theme_variables.css +++ b/addons/dine360_dashboard/static/src/css/theme_variables.css @@ -6,10 +6,10 @@ :root { /* Primary Brand Colors */ - --primary-color: #d6111e; - --primary-dark: #8B0A0E; - --primary-light: #E57373; - --primary-lighter: #FFCDD2; + --primary-color: #e50000; + --primary-dark: #b30000; + --primary-light: #ff6666; + --primary-lighter: #ffcccc; /* Secondary/Accent Color */ --secondary-color: #171422; @@ -17,26 +17,26 @@ --secondary-light: #2d293d; /* Gradient Combinations Removed - Using Solid Colors */ - --gradient-primary: #d6111e; - --gradient-primary-hover: #8B0A0E; + --gradient-primary: #e50000; + --gradient-primary-hover: #b30000; /* Home Page Background */ --bg-gradient-main: #ffffff; /* UI Element Colors */ - --btn-primary-bg: #d6111e; + --btn-primary-bg: #e50000; --link-color: #171422; - --link-hover: #d6111e; + --link-hover: #e50000; /* Status Colors */ --success-color: #171422; --warning-color: #FECD4F; - --danger-color: #d6111e; + --danger-color: #e50000; --info-color: #2d293d; /* Shadows */ - --shadow-primary: 0 4px 15px rgba(214, 17, 30, 0.2); - --shadow-primary-hover: 0 8px 20px rgba(214, 17, 30, 0.3); + --shadow-primary: 0 4px 15px rgba(229, 0, 0, 0.2); + --shadow-primary-hover: 0 8px 20px rgba(229, 0, 0, 0.3); --shadow-card: 0 10px 30px rgba(23, 20, 34, 0.08); } @@ -171,7 +171,7 @@ body, } .o_list_view .o_list_table tbody tr.o_data_row:hover { - background-color: rgba(214, 17, 30, 0.05) !important; + background-color: rgba(229, 0, 0, 0.05) !important; /* Light Red Hover */ transform: scale(1.002); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02); @@ -225,7 +225,7 @@ body, padding: 8px 20px !important; font-weight: 600 !important; letter-spacing: 0.3px; - box-shadow: 0 4px 12px rgba(214, 17, 30, 0.3) !important; + box-shadow: 0 4px 12px rgba(229, 0, 0, 0.3) !important; color: #fff !important; } @@ -234,7 +234,7 @@ body, .o_form_button_create:hover { background: var(--gradient-primary-hover) !important; transform: translateY(-2px); - box-shadow: 0 8px 15px rgba(214, 17, 30, 0.4) !important; + box-shadow: 0 8px 15px rgba(229, 0, 0, 0.4) !important; } /* Secondary Buttons */ @@ -262,7 +262,7 @@ body, .o_form_view .o_input:focus { border-color: var(--secondary-color) !important; background-color: #fff !important; - box-shadow: 0 0 0 3px rgba(214, 17, 30, 0.15) !important; + box-shadow: 0 0 0 3px rgba(229, 0, 0, 0.15) !important; } /* --------------------------------------------------------- @@ -280,7 +280,7 @@ body, padding: 8px 20px !important; font-weight: 600 !important; letter-spacing: 0.3px; - box-shadow: 0 4px 12px rgba(214, 17, 30, 0.3) !important; + box-shadow: 0 4px 12px rgba(229, 0, 0, 0.3) !important; } .btn-primary:hover, @@ -289,7 +289,7 @@ body, .o_button_import:hover { background: var(--gradient-primary-hover) !important; transform: translateY(-2px); - box-shadow: 0 8px 15px rgba(214, 17, 30, 0.4) !important; + box-shadow: 0 8px 15px rgba(229, 0, 0, 0.4) !important; } /* --------------------------------------------------------- @@ -311,8 +311,8 @@ body, .o_main_navbar .o_menu_sections .show .dropdown-toggle { background-color: #ffffff !important; /* Yellow Active Background */ - color: #d6111e !important; - border-bottom: 2px solid #d6111e !important; + color: #e50000 !important; + border-bottom: 2px solid #e50000 !important; } /* Dashboard Sidebar (Finance/Logistics) */ @@ -340,7 +340,7 @@ body, .o_dashboard_view .o_group_selector li.selected { background: var(--gradient-primary) !important; color: #fff !important; - box-shadow: 0 4px 10px rgba(214, 17, 30, 0.3) !important; + box-shadow: 0 4px 10px rgba(229, 0, 0, 0.3) !important; } /* Dashboard KPI Cards (Invoiced, Average Invoice, DSO) */ @@ -357,7 +357,7 @@ body, .o_dashboard_view .o_group .o_aggregate:hover { transform: translateY(-5px) !important; - box-shadow: 0 10px 25px rgba(214, 17, 30, 0.15) !important; + box-shadow: 0 10px 25px rgba(229, 0, 0, 0.15) !important; border-color: var(--secondary-color) !important; } @@ -434,7 +434,7 @@ a:hover, .o_input:focus, .o_searchview_input:focus { border-color: var(--secondary-color) !important; - box-shadow: 0 0 0 0.2rem rgba(214, 17, 30, 0.25) !important; + box-shadow: 0 0 0 0.2rem rgba(229, 0, 0, 0.25) !important; } /* Loading Bar */ @@ -540,7 +540,7 @@ a:hover, .o_main_navbar .o_menu_apps .o_app_drawer:hover i { color: var(--primary-dark) !important; transform: scale(1.1); - text-shadow: 0 2px 10px rgba(214, 17, 30, 0.5); + text-shadow: 0 2px 10px rgba(229, 0, 0, 0.5); } /* Dropdown Items */ @@ -559,7 +559,7 @@ a:hover, .dropdown-item:focus { background: var(--gradient-primary) !important; color: #fff !important; - box-shadow: 0 4px 10px rgba(214, 17, 30, 0.2); + box-shadow: 0 4px 10px rgba(229, 0, 0, 0.2); } /* Dropdown Header/Divider */ @@ -588,12 +588,12 @@ a:hover, .o_main_navbar .o_menu_sections .o_nav_entry, .o_main_navbar .o_menu_sections .dropdown-toggle { background: #ffffff; - border-bottom: 2px solid #d6111e; + border-bottom: 2px solid #e50000; } .list-group-item.active { z-index: 2; color: #fff; - background-color: #d6111e; - border-color: #d6111e; + background-color: #e50000; + border-color: #e50000; } \ No newline at end of file diff --git a/addons/dine360_dashboard/static/src/img/icons/apps.svg b/addons/dine360_dashboard/static/src/img/icons/apps.svg index bac6c27..58292a8 100644 --- a/addons/dine360_dashboard/static/src/img/icons/apps.svg +++ b/addons/dine360_dashboard/static/src/img/icons/apps.svg @@ -1,12 +1,12 @@ - + - + diff --git a/addons/dine360_dashboard/static/src/img/icons/calendar.svg b/addons/dine360_dashboard/static/src/img/icons/calendar.svg index 4b3e89c..3bee606 100644 --- a/addons/dine360_dashboard/static/src/img/icons/calendar.svg +++ b/addons/dine360_dashboard/static/src/img/icons/calendar.svg @@ -5,7 +5,7 @@ - + @@ -14,19 +14,19 @@ - + 31 - + - + diff --git a/addons/dine360_dashboard/static/src/img/icons/contacts.svg b/addons/dine360_dashboard/static/src/img/icons/contacts.svg index 01b115e..80937f0 100644 --- a/addons/dine360_dashboard/static/src/img/icons/contacts.svg +++ b/addons/dine360_dashboard/static/src/img/icons/contacts.svg @@ -1,7 +1,7 @@ - + @@ -11,7 +11,7 @@ - - - + + + diff --git a/addons/dine360_dashboard/static/src/img/icons/crm.svg b/addons/dine360_dashboard/static/src/img/icons/crm.svg index c658baa..16e7897 100644 --- a/addons/dine360_dashboard/static/src/img/icons/crm.svg +++ b/addons/dine360_dashboard/static/src/img/icons/crm.svg @@ -1,12 +1,12 @@ - + - + diff --git a/addons/dine360_dashboard/static/src/img/icons/dashboards.svg b/addons/dine360_dashboard/static/src/img/icons/dashboards.svg index c226833..470946a 100644 --- a/addons/dine360_dashboard/static/src/img/icons/dashboards.svg +++ b/addons/dine360_dashboard/static/src/img/icons/dashboards.svg @@ -1,7 +1,7 @@ - + diff --git a/addons/dine360_dashboard/static/src/img/icons/discuss.svg b/addons/dine360_dashboard/static/src/img/icons/discuss.svg index 66a4f4c..f57ac60 100644 --- a/addons/dine360_dashboard/static/src/img/icons/discuss.svg +++ b/addons/dine360_dashboard/static/src/img/icons/discuss.svg @@ -5,14 +5,14 @@ - + - + diff --git a/addons/dine360_dashboard/static/src/img/icons/employees.svg b/addons/dine360_dashboard/static/src/img/icons/employees.svg index 3e89511..d169041 100644 --- a/addons/dine360_dashboard/static/src/img/icons/employees.svg +++ b/addons/dine360_dashboard/static/src/img/icons/employees.svg @@ -1,7 +1,7 @@ - + @@ -11,9 +11,9 @@ - - - + + + diff --git a/addons/dine360_dashboard/static/src/img/icons/inventory.svg b/addons/dine360_dashboard/static/src/img/icons/inventory.svg index d1531cd..b9d3ac9 100644 --- a/addons/dine360_dashboard/static/src/img/icons/inventory.svg +++ b/addons/dine360_dashboard/static/src/img/icons/inventory.svg @@ -1,12 +1,12 @@ - + - + diff --git a/addons/dine360_dashboard/static/src/img/icons/invoicing.svg b/addons/dine360_dashboard/static/src/img/icons/invoicing.svg index 1983140..909bedd 100644 --- a/addons/dine360_dashboard/static/src/img/icons/invoicing.svg +++ b/addons/dine360_dashboard/static/src/img/icons/invoicing.svg @@ -1,7 +1,7 @@ - + @@ -12,14 +12,14 @@ - + - $ 128.00 + $ 128.00 diff --git a/addons/dine360_dashboard/static/src/img/icons/kitchen_kds.svg b/addons/dine360_dashboard/static/src/img/icons/kitchen_kds.svg index 78c9a2c..8ab0c38 100644 --- a/addons/dine360_dashboard/static/src/img/icons/kitchen_kds.svg +++ b/addons/dine360_dashboard/static/src/img/icons/kitchen_kds.svg @@ -5,7 +5,7 @@ - + @@ -17,7 +17,7 @@ - D360 + D360 diff --git a/addons/dine360_dashboard/static/src/img/icons/point_of_sale.svg b/addons/dine360_dashboard/static/src/img/icons/point_of_sale.svg index 880a668..df01221 100644 --- a/addons/dine360_dashboard/static/src/img/icons/point_of_sale.svg +++ b/addons/dine360_dashboard/static/src/img/icons/point_of_sale.svg @@ -1,7 +1,7 @@ - + @@ -19,8 +19,8 @@ - - - - + + + + diff --git a/addons/dine360_dashboard/static/src/img/icons/purchase.svg b/addons/dine360_dashboard/static/src/img/icons/purchase.svg index 7d913e2..807840b 100644 --- a/addons/dine360_dashboard/static/src/img/icons/purchase.svg +++ b/addons/dine360_dashboard/static/src/img/icons/purchase.svg @@ -1,7 +1,7 @@ - + diff --git a/addons/dine360_dashboard/static/src/img/icons/saas.svg b/addons/dine360_dashboard/static/src/img/icons/saas.svg new file mode 100644 index 0000000..282c2e6 --- /dev/null +++ b/addons/dine360_dashboard/static/src/img/icons/saas.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/dine360_dashboard/static/src/img/icons/sales.svg b/addons/dine360_dashboard/static/src/img/icons/sales.svg index dd88f3f..72645af 100644 --- a/addons/dine360_dashboard/static/src/img/icons/sales.svg +++ b/addons/dine360_dashboard/static/src/img/icons/sales.svg @@ -1,7 +1,7 @@ - + @@ -9,10 +9,10 @@ - + - - - - + + + + diff --git a/addons/dine360_dashboard/static/src/img/icons/settings.svg b/addons/dine360_dashboard/static/src/img/icons/settings.svg index 6489267..6676aef 100644 --- a/addons/dine360_dashboard/static/src/img/icons/settings.svg +++ b/addons/dine360_dashboard/static/src/img/icons/settings.svg @@ -1,7 +1,7 @@ - + diff --git a/addons/dine360_dashboard/static/src/img/icons/table_reservation.svg b/addons/dine360_dashboard/static/src/img/icons/table_reservation.svg index 624922b..7b91a8a 100644 --- a/addons/dine360_dashboard/static/src/img/icons/table_reservation.svg +++ b/addons/dine360_dashboard/static/src/img/icons/table_reservation.svg @@ -1,7 +1,7 @@ - + @@ -11,10 +11,10 @@ - + - - RESERVED + + RESERVED diff --git a/addons/dine360_dashboard/static/src/img/icons/uber_integration.svg b/addons/dine360_dashboard/static/src/img/icons/uber_integration.svg index 28fa7e2..7b4de07 100644 --- a/addons/dine360_dashboard/static/src/img/icons/uber_integration.svg +++ b/addons/dine360_dashboard/static/src/img/icons/uber_integration.svg @@ -1,7 +1,7 @@ - + diff --git a/addons/dine360_dashboard/static/src/img/icons/website.svg b/addons/dine360_dashboard/static/src/img/icons/website.svg index cb8abbc..d39699c 100644 --- a/addons/dine360_dashboard/static/src/img/icons/website.svg +++ b/addons/dine360_dashboard/static/src/img/icons/website.svg @@ -1,7 +1,7 @@ - + @@ -10,13 +10,13 @@ - + - + - + - + diff --git a/addons/dine360_dashboard/static/src/img/login_bg.png b/addons/dine360_dashboard/static/src/img/login_bg.png index 0c4c67c..f3bb9bc 100644 Binary files a/addons/dine360_dashboard/static/src/img/login_bg.png and b/addons/dine360_dashboard/static/src/img/login_bg.png differ diff --git a/addons/dine360_dashboard/views/home_template.xml b/addons/dine360_dashboard/views/home_template.xml index 31d018b..f6257b8 100644 --- a/addons/dine360_dashboard/views/home_template.xml +++ b/addons/dine360_dashboard/views/home_template.xml @@ -10,7 +10,7 @@
- +
diff --git a/addons/dine360_dashboard/views/web_title_template.xml b/addons/dine360_dashboard/views/web_title_template.xml index 821ac33..1664fa4 100644 --- a/addons/dine360_dashboard/views/web_title_template.xml +++ b/addons/dine360_dashboard/views/web_title_template.xml @@ -1,7 +1,7 @@