Spaces:
Sleeping
Sleeping
Moiz
commited on
Commit
Β·
d3ad890
1
Parent(s):
76f3809
movie posters added
Browse files
app.py
CHANGED
@@ -56,9 +56,12 @@ def display_movie(action, profile):
|
|
56 |
# Get the IMDb ID from the 'id' column
|
57 |
movie_id = movie.get('id', 'Unknown') # Use 'Unknown' if 'id' doesn't exist
|
58 |
|
|
|
|
|
|
|
59 |
details = {
|
60 |
"title": f'<a href="https://www.imdb.com/title/{movie_id}/" target="_blank" style="font-size: 36px; text-decoration: none; color: inherit; font-family: Arial, sans-serif;">{movie["Title"]}</a>',
|
61 |
-
"poster_placeholder": "
|
62 |
"ratings": f"""
|
63 |
<div style="display: flex; gap: 15px; align-items: center; text-align: center;">
|
64 |
<div>
|
|
|
56 |
# Get the IMDb ID from the 'id' column
|
57 |
movie_id = movie.get('id', 'Unknown') # Use 'Unknown' if 'id' doesn't exist
|
58 |
|
59 |
+
# Replace placeholder with actual poster URL
|
60 |
+
poster_url = movie.get("Poster", "π₯ Movie Poster Placeholder π₯") # Default placeholder if Poster is missing
|
61 |
+
|
62 |
details = {
|
63 |
"title": f'<a href="https://www.imdb.com/title/{movie_id}/" target="_blank" style="font-size: 36px; text-decoration: none; color: inherit; font-family: Arial, sans-serif;">{movie["Title"]}</a>',
|
64 |
+
"poster_placeholder": f'<img src="{poster_url}" alt="Poster" style="width: 100%; max-width: 300px; height: auto;"/>', # Display the poster image
|
65 |
"ratings": f"""
|
66 |
<div style="display: flex; gap: 15px; align-items: center; text-align: center;">
|
67 |
<div>
|