- Introduced a new product details layout in `product_details_page.xml` with styled elements and hidden original Odoo components for a premium look. - Enhanced the product form view in `product_views.xml` to include a new field for marking popular deals. - Updated the configuration settings view in `res_config_settings_views.xml` to add a delivery option toggle during checkout. - Reorganized the shop page layout in `shop_page.xml` to include dynamic categories and attributes, along with a new arrivals section. - Created a new snippets file `snippets.xml` for potential future custom drag-and-drop blocks. - Added a script in `parse_content.py` for parsing specific content from a markdown file.
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
<!-- Create the /about, /faq, /blog pages explicitly and link them to views -->
|
|
<record id="about_page_shivasakthi" model="website.page">
|
|
<field name="url">/about</field>
|
|
<field name="is_published">True</field>
|
|
<field name="view_id" ref="dine360_theme_shivasakthi.about_page"/>
|
|
<field name="name">About Us</field>
|
|
<field name="website_indexed" eval="True"/>
|
|
</record>
|
|
|
|
<record id="faq_page_shivasakthi" model="website.page">
|
|
<field name="url">/faq</field>
|
|
<field name="is_published">True</field>
|
|
<field name="view_id" ref="dine360_theme_shivasakthi.faq_page"/>
|
|
<field name="name">FAQ</field>
|
|
<field name="website_indexed" eval="True"/>
|
|
</record>
|
|
|
|
<record id="blog_page_shivasakthi" model="website.page">
|
|
<field name="url">/blog</field>
|
|
<field name="is_published">True</field>
|
|
<field name="view_id" ref="dine360_theme_shivasakthi.blog_page"/>
|
|
<field name="name">Blog</field>
|
|
<field name="website_indexed" eval="True"/>
|
|
</record>
|
|
</data>
|
|
</odoo>
|