- 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.
42 lines
1.7 KiB
Python
42 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Dine360 Theme Shivasakthi',
|
|
'description': 'Custom theme for Dine360 Shivasakthi website',
|
|
'category': 'Theme/Website',
|
|
'version': '1.0',
|
|
'author': 'Dine360',
|
|
'depends': ['website', 'website_sale', 'website_crm'],
|
|
'data': [
|
|
'views/layout.xml', # Header, Footer, and Global Layout changes
|
|
'views/pages.xml', # specific page content (Home, About, etc.)
|
|
'views/about_page.xml', # About Page
|
|
'views/contact_page.xml',# Contact Page
|
|
'views/faq_page.xml', # FAQ Page
|
|
'views/blog_page.xml', # Blog Page
|
|
'views/blog_detail_page.xml', # Blog Detail Page
|
|
'views/shop_page.xml', # Shop Page
|
|
'views/checkout_address.xml', # Checkout Address page (remove Company/VAT)
|
|
'views/product_details_page.xml', # Customized Product Details Page
|
|
'views/product_views.xml', # Product Form custom fields
|
|
'views/snippets.xml', # Custom Building Blocks
|
|
'views/options.xml', # Options for snippets (if any)
|
|
'views/res_config_settings_views.xml', # Backend Settings
|
|
'data/website_data.xml', # Data for creating pages
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'dine360_theme_shivasakthi/static/src/scss/primary_variables.scss',
|
|
'dine360_theme_shivasakthi/static/src/scss/theme.scss',
|
|
'dine360_theme_shivasakthi/static/src/scss/shop.scss',
|
|
'dine360_theme_shivasakthi/static/src/js/deal_switcher.js',
|
|
'dine360_theme_shivasakthi/static/src/js/category_slider.js',
|
|
],
|
|
},
|
|
'images': [
|
|
'static/description/cover.png',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
}
|