- 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.
34 lines
1023 B
XML
34 lines
1023 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!--
|
|
Custom Snippets (Building Blocks)
|
|
Define any custom drag-and-drop blocks here (Sliders, Feature Grids, etc).
|
|
-->
|
|
|
|
<!-- Example Snippet Definition -->
|
|
<!--
|
|
<template id="s_custom_banner" name="Custom Banner">
|
|
<section class="s_custom_banner">
|
|
<div class="container">
|
|
<h2>My Custom Banner</h2>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
-->
|
|
|
|
<!-- Register the Snippet in the Sidebar -->
|
|
<!--
|
|
<template id="snippets_registration" inherit_id="website.snippets" name="Register Custom Snippets">
|
|
<xpath expr="//div[@id='snippet_structure']" position="inside">
|
|
<t t-snippet="dine360_theme_shivasakthi.s_custom_banner" t-thumbnail="/dine360_theme_shivasakthi/static/src/img/s_banner_thumb.jpg"/>
|
|
</xpath>
|
|
</template>
|
|
-->
|
|
</data>
|
|
</odoo>
|
|
|
|
|
|
|
|
|