update
This commit is contained in:
@@ -74,7 +74,206 @@ def seed_homepage_content(db: Session):
|
||||
features = [{'icon': 'Shield', 'title': 'Secure & Safe', 'description': '24/7 security and state-of-the-art safety systems'}, {'icon': 'Wifi', 'title': 'Free WiFi', 'description': 'High-speed internet access throughout the property'}, {'icon': 'Coffee', 'title': 'Room Service', 'description': '24/7 room service available for your convenience'}, {'icon': 'Car', 'title': 'Parking', 'description': 'Complimentary valet parking for all guests'}, {'icon': 'UtensilsCrossed', 'title': 'Fine Dining', 'description': 'World-class restaurants and dining experiences'}, {'icon': 'Dumbbell', 'title': 'Fitness Center', 'description': 'State-of-the-art fitness facilities'}]
|
||||
testimonials = [{'name': 'Robert Martinez', 'role': 'CEO, Tech Corp', 'image': 'https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=200', 'rating': 5, 'comment': 'Exceptional service and attention to detail. The staff went above and beyond to make our stay memorable.'}, {'name': 'Lisa Anderson', 'role': 'Travel Blogger', 'image': 'https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=200', 'rating': 5, 'comment': "The most luxurious hotel experience I've ever had. Every detail was perfect."}, {'name': 'David Thompson', 'role': 'Investment Banker', 'image': 'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=200', 'rating': 5, 'comment': 'Outstanding facilities and impeccable service. Highly recommend for business travelers.'}]
|
||||
gallery_images = ['https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=800', 'https://images.unsplash.com/photo-1590490360182-c33d57733427?w=800', 'https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=800', 'https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=800', 'https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=800', 'https://images.unsplash.com/photo-1566073771259-6a8506099945?w=800']
|
||||
homepage_data = {'page_type': PageType.HOME, 'title': 'Luxury Hotel - Experience Unparalleled Elegance', 'subtitle': 'Where timeless luxury meets modern sophistication', 'description': 'Discover a world of refined elegance and exceptional service', 'hero_title': 'Welcome to Luxury', 'hero_subtitle': 'Experience the pinnacle of hospitality', 'hero_image': 'https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=1200', 'features': json.dumps(features), 'luxury_section_title': 'Experience Unparalleled Luxury', 'luxury_section_subtitle': 'Where elegance meets comfort in every detail', 'luxury_section_image': 'https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1200', 'luxury_features': json.dumps(luxury_features), 'luxury_gallery_section_title': 'Our Luxury Gallery', 'luxury_gallery_section_subtitle': 'A glimpse into our world of elegance', 'luxury_gallery': json.dumps(luxury_gallery), 'luxury_testimonials_section_title': 'What Our Guests Say', 'luxury_testimonials_section_subtitle': 'Testimonials from our valued guests', 'luxury_testimonials': json.dumps(luxury_testimonials), 'luxury_services_section_title': 'Premium Services', 'luxury_services_section_subtitle': 'Indulge in our world-class amenities', 'luxury_services': json.dumps(luxury_services), 'luxury_experiences_section_title': 'Exclusive Experiences', 'luxury_experiences_section_subtitle': 'Create unforgettable memories', 'luxury_experiences': json.dumps(luxury_experiences), 'awards_section_title': 'Awards & Recognition', 'awards_section_subtitle': 'Recognized for excellence worldwide', 'awards': json.dumps(awards), 'partners_section_title': 'Our Partners', 'partners_section_subtitle': 'Trusted by leading brands', 'partners': json.dumps(partners), 'amenities_section_title': 'Premium Amenities', 'amenities_section_subtitle': 'Everything you need for a perfect stay', 'amenities': json.dumps(amenities), 'testimonials_section_title': 'Guest Reviews', 'testimonials_section_subtitle': 'Hear from our satisfied guests', 'testimonials': json.dumps(testimonials), 'gallery_section_title': 'Photo Gallery', 'gallery_section_subtitle': 'Explore our beautiful spaces', 'gallery_images': json.dumps(gallery_images), 'about_preview_title': 'About Our Luxury Hotel', 'about_preview_subtitle': 'A legacy of excellence', 'about_preview_content': 'Discover a world of refined elegance and exceptional service. Our hotel combines timeless luxury with modern amenities to create an unforgettable experience. With over 50,000 satisfied guests and numerous awards, we continue to set the standard for luxury hospitality.', 'about_preview_image': 'https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=800', 'stats': json.dumps(stats), 'cta_title': 'Ready to Experience Luxury?', 'cta_subtitle': 'Book your stay today and discover the difference', 'cta_button_text': 'Book Now', 'cta_button_link': '/rooms', 'cta_image': 'https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1200', 'is_active': True}
|
||||
|
||||
# Enterprise homepage fields
|
||||
hero_video_url = 'https://videos.unsplash.com/video-1564501049412-61c2a3083791'
|
||||
hero_video_poster = 'https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=1200'
|
||||
features_section_title = 'Why Choose Us'
|
||||
features_section_subtitle = 'Discover what makes us the perfect choice for your stay'
|
||||
stats_section_title = 'Our Achievements'
|
||||
stats_section_subtitle = 'Numbers that speak for themselves'
|
||||
rooms_section_title = 'Luxurious Rooms & Suites'
|
||||
rooms_section_subtitle = 'Experience comfort and elegance in every room'
|
||||
rooms_section_button_text = 'View All Rooms'
|
||||
rooms_section_button_link = '/rooms'
|
||||
rooms_section_enabled = True
|
||||
services_section_button_text = 'Explore All Services'
|
||||
services_section_button_link = '/services'
|
||||
services_section_limit = 4
|
||||
|
||||
# Sections enabled configuration
|
||||
sections_enabled = {
|
||||
'features': True,
|
||||
'luxury': True,
|
||||
'gallery': True,
|
||||
'testimonials': True,
|
||||
'stats': True,
|
||||
'amenities': True,
|
||||
'about_preview': True,
|
||||
'services': True,
|
||||
'experiences': True,
|
||||
'awards': True,
|
||||
'cta': True,
|
||||
'partners': True,
|
||||
'rooms': True,
|
||||
'newsletter': True,
|
||||
'trust_badges': True,
|
||||
'promotions': True,
|
||||
'blog': True
|
||||
}
|
||||
|
||||
# Newsletter section
|
||||
newsletter_section_title = 'Stay Connected'
|
||||
newsletter_section_subtitle = 'Subscribe to our newsletter for exclusive offers and updates'
|
||||
newsletter_placeholder = 'Enter your email address'
|
||||
newsletter_button_text = 'Subscribe'
|
||||
newsletter_enabled = True
|
||||
|
||||
# Trust badges
|
||||
trust_badges = [
|
||||
{
|
||||
'name': '5-Star Rating',
|
||||
'logo': 'https://images.unsplash.com/photo-1579783902614-a3fb3927b6a5?w=200',
|
||||
'description': 'Awarded 5 stars by leading travel organizations',
|
||||
'link': '#'
|
||||
},
|
||||
{
|
||||
'name': 'TripAdvisor Excellence',
|
||||
'logo': 'https://images.unsplash.com/photo-1606761568499-6d2451b23c66?w=200',
|
||||
'description': 'Certificate of Excellence winner',
|
||||
'link': '#'
|
||||
},
|
||||
{
|
||||
'name': 'Green Certified',
|
||||
'logo': 'https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=200',
|
||||
'description': 'Eco-friendly and sustainable practices',
|
||||
'link': '#'
|
||||
},
|
||||
{
|
||||
'name': 'Luxury Collection',
|
||||
'logo': 'https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=200',
|
||||
'description': 'Member of the world\'s finest luxury hotels',
|
||||
'link': '#'
|
||||
}
|
||||
]
|
||||
trust_badges_section_title = 'Trusted & Recognized'
|
||||
trust_badges_section_subtitle = 'Awards and certifications that validate our commitment to excellence'
|
||||
trust_badges_enabled = True
|
||||
|
||||
# Promotions
|
||||
promotions = [
|
||||
{
|
||||
'title': 'Summer Special',
|
||||
'description': 'Enjoy 25% off on all room bookings this summer. Limited time offer!',
|
||||
'image': 'https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=600',
|
||||
'discount': '25% OFF',
|
||||
'valid_until': '2024-08-31',
|
||||
'link': '/rooms',
|
||||
'button_text': 'Book Now'
|
||||
},
|
||||
{
|
||||
'title': 'Weekend Getaway',
|
||||
'description': 'Perfect weekend escape with complimentary breakfast and spa access',
|
||||
'image': 'https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=600',
|
||||
'discount': '30% OFF',
|
||||
'valid_until': '2024-12-31',
|
||||
'link': '/rooms',
|
||||
'button_text': 'Learn More'
|
||||
},
|
||||
{
|
||||
'title': 'Honeymoon Package',
|
||||
'description': 'Romantic getaway with champagne, flowers, and special amenities',
|
||||
'image': 'https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=600',
|
||||
'discount': 'Special Rate',
|
||||
'valid_until': '2024-12-31',
|
||||
'link': '/rooms',
|
||||
'button_text': 'Book Package'
|
||||
}
|
||||
]
|
||||
promotions_section_title = 'Special Offers'
|
||||
promotions_section_subtitle = 'Exclusive deals and packages designed just for you'
|
||||
promotions_enabled = True
|
||||
|
||||
# Blog section
|
||||
blog_section_title = 'Latest News & Updates'
|
||||
blog_section_subtitle = 'Stay informed about our latest news, events, and travel tips'
|
||||
blog_posts_limit = 3
|
||||
blog_enabled = True
|
||||
|
||||
homepage_data = {
|
||||
'page_type': PageType.HOME,
|
||||
'title': 'Luxury Hotel - Experience Unparalleled Elegance',
|
||||
'subtitle': 'Where timeless luxury meets modern sophistication',
|
||||
'description': 'Discover a world of refined elegance and exceptional service',
|
||||
'hero_title': 'Welcome to Luxury',
|
||||
'hero_subtitle': 'Experience the pinnacle of hospitality',
|
||||
'hero_image': 'https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=1200',
|
||||
'hero_video_url': hero_video_url,
|
||||
'hero_video_poster': hero_video_poster,
|
||||
'features': json.dumps(features),
|
||||
'features_section_title': features_section_title,
|
||||
'features_section_subtitle': features_section_subtitle,
|
||||
'luxury_section_title': 'Experience Unparalleled Luxury',
|
||||
'luxury_section_subtitle': 'Where elegance meets comfort in every detail',
|
||||
'luxury_section_image': 'https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1200',
|
||||
'luxury_features': json.dumps(luxury_features),
|
||||
'luxury_gallery_section_title': 'Our Luxury Gallery',
|
||||
'luxury_gallery_section_subtitle': 'A glimpse into our world of elegance',
|
||||
'luxury_gallery': json.dumps(luxury_gallery),
|
||||
'luxury_testimonials_section_title': 'What Our Guests Say',
|
||||
'luxury_testimonials_section_subtitle': 'Testimonials from our valued guests',
|
||||
'luxury_testimonials': json.dumps(luxury_testimonials),
|
||||
'luxury_services_section_title': 'Premium Services',
|
||||
'luxury_services_section_subtitle': 'Indulge in our world-class amenities',
|
||||
'luxury_services': json.dumps(luxury_services),
|
||||
'services_section_button_text': services_section_button_text,
|
||||
'services_section_button_link': services_section_button_link,
|
||||
'services_section_limit': services_section_limit,
|
||||
'luxury_experiences_section_title': 'Exclusive Experiences',
|
||||
'luxury_experiences_section_subtitle': 'Create unforgettable memories',
|
||||
'luxury_experiences': json.dumps(luxury_experiences),
|
||||
'awards_section_title': 'Awards & Recognition',
|
||||
'awards_section_subtitle': 'Recognized for excellence worldwide',
|
||||
'awards': json.dumps(awards),
|
||||
'partners_section_title': 'Our Partners',
|
||||
'partners_section_subtitle': 'Trusted by leading brands',
|
||||
'partners': json.dumps(partners),
|
||||
'amenities_section_title': 'Premium Amenities',
|
||||
'amenities_section_subtitle': 'Everything you need for a perfect stay',
|
||||
'amenities': json.dumps(amenities),
|
||||
'testimonials_section_title': 'Guest Reviews',
|
||||
'testimonials_section_subtitle': 'Hear from our satisfied guests',
|
||||
'testimonials': json.dumps(testimonials),
|
||||
'gallery_section_title': 'Photo Gallery',
|
||||
'gallery_section_subtitle': 'Explore our beautiful spaces',
|
||||
'gallery_images': json.dumps(gallery_images),
|
||||
'about_preview_title': 'About Our Luxury Hotel',
|
||||
'about_preview_subtitle': 'A legacy of excellence',
|
||||
'about_preview_content': 'Discover a world of refined elegance and exceptional service. Our hotel combines timeless luxury with modern amenities to create an unforgettable experience. With over 50,000 satisfied guests and numerous awards, we continue to set the standard for luxury hospitality.',
|
||||
'about_preview_image': 'https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=800',
|
||||
'stats': json.dumps(stats),
|
||||
'stats_section_title': stats_section_title,
|
||||
'stats_section_subtitle': stats_section_subtitle,
|
||||
'rooms_section_title': rooms_section_title,
|
||||
'rooms_section_subtitle': rooms_section_subtitle,
|
||||
'rooms_section_button_text': rooms_section_button_text,
|
||||
'rooms_section_button_link': rooms_section_button_link,
|
||||
'rooms_section_enabled': rooms_section_enabled,
|
||||
'sections_enabled': json.dumps(sections_enabled),
|
||||
'newsletter_section_title': newsletter_section_title,
|
||||
'newsletter_section_subtitle': newsletter_section_subtitle,
|
||||
'newsletter_placeholder': newsletter_placeholder,
|
||||
'newsletter_button_text': newsletter_button_text,
|
||||
'newsletter_enabled': newsletter_enabled,
|
||||
'trust_badges_section_title': trust_badges_section_title,
|
||||
'trust_badges_section_subtitle': trust_badges_section_subtitle,
|
||||
'trust_badges': json.dumps(trust_badges),
|
||||
'trust_badges_enabled': trust_badges_enabled,
|
||||
'promotions_section_title': promotions_section_title,
|
||||
'promotions_section_subtitle': promotions_section_subtitle,
|
||||
'promotions': json.dumps(promotions),
|
||||
'promotions_enabled': promotions_enabled,
|
||||
'blog_section_title': blog_section_title,
|
||||
'blog_section_subtitle': blog_section_subtitle,
|
||||
'blog_posts_limit': blog_posts_limit,
|
||||
'blog_enabled': blog_enabled,
|
||||
'cta_title': 'Ready to Experience Luxury?',
|
||||
'cta_subtitle': 'Book your stay today and discover the difference',
|
||||
'cta_button_text': 'Book Now',
|
||||
'cta_button_link': '/rooms',
|
||||
'cta_image': 'https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1200',
|
||||
'is_active': True
|
||||
}
|
||||
if existing:
|
||||
for key, value in homepage_data.items():
|
||||
if key != 'page_type':
|
||||
|
||||
Reference in New Issue
Block a user