implement V2 website theme layout and enable database filtering in Docker configuration

This commit is contained in:
Alaguraj0361 2026-07-20 15:41:31 +05:30
parent 53a688cd02
commit f5bee990ff
16 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<odoo> <odoo>
<!-- Create the About Us website page record -->
<record id="aboutus_page" model="website.page">
<field name="name">About Us</field>
<field name="url">/aboutus</field>
<field name="is_published">True</field>
<field name="view_id" ref="website.aboutus"/>
<field name="track">True</field>
</record>
<!-- ============================================================ <!-- ============================================================
THEME AAKRITI V2 — Premium Events Theme THEME AAKRITI V2 — Premium Events Theme
All templates are self-contained. Nothing in All templates are self-contained. Nothing in

View File

@ -22,6 +22,7 @@ services:
USER: odoo USER: odoo
PASSWORD: odoo PASSWORD: odoo
LIST_DB: "True" LIST_DB: "True"
DBFILTER: "^aakriti$"
volumes: volumes:
- client4_odoo_data:/var/lib/odoo - client4_odoo_data:/var/lib/odoo
- ./addons:/mnt/extra-addons - ./addons:/mnt/extra-addons