- Introduced a new module for customizing the Table Reservation theme with primary and secondary branding colors. - Updated the __manifest__.py to include dependencies and module details. - Created models for website settings to manage theme colors. - Added views for configuration settings and menu items for easy access. - Enhanced reservation templates to apply custom styles dynamically. - Implemented a verification script to check if the theme is applied correctly. - Updated docker-compose.yml to change the exposed port for the Odoo service.
24 lines
856 B
Python
24 lines
856 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Dine360 Table Reservation Theme Customizer',
|
|
'version': '1.0.0',
|
|
'category': 'Website/Theme',
|
|
'summary': 'Configure Primary and Secondary branding colors for the Table Reservation page.',
|
|
'description': """
|
|
Table Reservation Theme Customizer:
|
|
- Adds website-specific settings for Table Reservation layout colors
|
|
- Dynamically colors header, buttons, inputs, time slots, hover states, cards, and borders
|
|
- Fully compatible and responsive across all devices
|
|
""",
|
|
'author': 'Dine360',
|
|
'depends': ['website', 'dine360_reservation'],
|
|
'data': [
|
|
'views/res_config_settings_views.xml',
|
|
'views/reservation_templates_inherit.xml',
|
|
'views/menu_items.xml',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
}
|