- Created __init__.py and __manifest__.py for the new dine360_dashboard_website module. - Implemented custom controllers to handle website routing and dashboard rendering. - Added views for website logo and shop template to enhance the user interface. - Updated dine360_reservation and dine360_restaurant modules to include dine360_table as a dependency. - Enhanced restaurant table management with new views and actions for floors and tables. - Updated docker-compose to change the exposed port for the Odoo service.
11 lines
537 B
XML
11 lines
537 B
XML
<odoo>
|
|
<!-- Ensure Shop Filter Sidebar is Visible -->
|
|
<template id="products_categories_inherit" inherit_id="website_sale.products_categories" name="Show Categories Sidebar">
|
|
<!-- Force display of categories sidebar -->
|
|
<!-- <xpath expr="//div[@id='products_grid_before']" position="attributes">
|
|
<attribute name="class">col-lg-3 d-block</attribute>
|
|
<attribute name="style">display: block !important; visibility: visible !important;</attribute>
|
|
</xpath> -->
|
|
</template>
|
|
</odoo>
|