78 lines
2.2 KiB
Markdown
78 lines
2.2 KiB
Markdown
# Git Commit Summary - Chennora Theme Update
|
|
|
|
## ✅ Files Added to Git:
|
|
|
|
### New Images (3 files):
|
|
1. `odoo-testing-addons/addons/dine360_theme_chennora/static/src/img/gobi-65.png` (88 KB)
|
|
2. `odoo-testing-addons/addons/dine360_theme_chennora/static/src/img/unlimited-thali.png` (127 KB)
|
|
3. `odoo-testing-addons/addons/dine360_theme_chennora/static/src/img/fish-curry.png` (100 KB)
|
|
|
|
### Updated Files:
|
|
1. `odoo-testing-addons/addons/dine360_theme_chennora/views/pages.xml` - New 3-card offer section
|
|
2. `odoo-testing-addons/addons/dine360_theme_chennora/__manifest__.py` - Added main.css
|
|
3. `odoo-testing-addons/addons/dine360_theme_chennora/views/layout.xml` - Added Bootstrap Icons
|
|
4. `IMPLEMENTATION_SUMMARY.md` - Documentation
|
|
5. `HOW_TO_UPDATE_THEME.md` - Update guide
|
|
6. `docker-compose.yml` - Changed to client2
|
|
|
|
## 📝 Commit Message:
|
|
```
|
|
Update Chennora theme with new offer cards and assets
|
|
```
|
|
|
|
## 🔄 Git Status:
|
|
✅ **Committed locally** - All changes are saved in your local Git repository
|
|
❌ **Not pushed to remote** - Authentication failed when trying to push
|
|
|
|
## 🚀 To Push to Remote Repository:
|
|
|
|
You need to authenticate with Git. Run one of these:
|
|
|
|
### Option 1: Push with credentials
|
|
```bash
|
|
cd d:\ODOO_Final
|
|
git push origin main
|
|
```
|
|
(You'll be prompted for username/password or token)
|
|
|
|
### Option 2: Configure Git credentials
|
|
```bash
|
|
git config credential.helper store
|
|
git push origin main
|
|
```
|
|
|
|
### Option 3: Use SSH instead of HTTPS
|
|
```bash
|
|
git remote set-url origin git@github.com:alaguraj/odoo-testing-addons.git
|
|
git push origin main
|
|
```
|
|
|
|
## 📦 What's in the Commit:
|
|
|
|
### Changes Made:
|
|
- **3 new food images** for offer cards
|
|
- **Updated homepage design** with dark cards
|
|
- **Bootstrap Icons** added to layout
|
|
- **Main CSS** (335KB) added to theme
|
|
- **Documentation files** for implementation
|
|
|
|
### Card Design:
|
|
- Dark background (#04121D)
|
|
- Text on left (70%), image on right (30%)
|
|
- Yellow "ORDER NOW" buttons (#FECD4F)
|
|
- Teal and yellow accent colors
|
|
|
|
## 🔍 Verify the Commit:
|
|
```bash
|
|
git log --oneline -1
|
|
git show HEAD --stat
|
|
```
|
|
|
|
## 📌 Next Steps:
|
|
|
|
1. **Authenticate and push** to remote repository
|
|
2. **Upgrade the theme** in Odoo (Apps → Chennora → Upgrade)
|
|
3. **Refresh homepage** to see the new cards
|
|
|
|
Your changes are safely committed locally! 🎉
|