From e708bec6cd76c2686de4158dde4d04f72a3c300d Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Wed, 6 May 2026 12:21:26 -0700 Subject: init: lumiere film diary --- templates/director.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 templates/director.html (limited to 'templates/director.html') diff --git a/templates/director.html b/templates/director.html new file mode 100644 index 0000000..3257ee9 --- /dev/null +++ b/templates/director.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{% block title %}{{ director_name }} · Lumière{% endblock %} + +{% block content %} +
+

Director

+

{{ director_name }}

+
+ +
+
+ Films logged + {{ director_summary.total_films_logged }} +
+
+ Average stars + {{ "%.1f"|format(director_summary.average_stars) }} +
+
+ Common shelf + {{ director_summary.most_common_shelf|title }} +
+
+ +
+ {% for film in films %} + {% include "_film_card.html" %} + {% endfor %} +
+{% endblock %} -- cgit v1.3-2-g0d8e