From 138eaaa12cdaeb6035951ff4f1547d73e8d12612 Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Wed, 6 May 2026 16:23:59 -0700 Subject: Add director image and biography to director page - Fetch director profile image and biography from TMDB API - Display image next to director name with lazy loading - Show biography below director name - Gracefully handle missing data (image/biography optional) Co-Authored-By: Claude Haiku 4.5 --- templates/director.html | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'templates/director.html') diff --git a/templates/director.html b/templates/director.html index 3257ee9..98ef9d6 100644 --- a/templates/director.html +++ b/templates/director.html @@ -3,9 +3,17 @@ {% block title %}{{ director_name }} · Lumière{% endblock %} {% block content %} -
-

Director

-

{{ director_name }}

+
+
+

Director

+

{{ director_name }}

+ {% if director_biography %} +

{{ director_biography }}

+ {% endif %} +
+ {% if director_image %} + {{ director_name }} + {% endif %}
-- cgit v1.3-2-g0d8e