From 623e20c273d6756ee65fce168b2b7d24acf3adb9 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Thu, 9 Oct 2025 20:57:46 +0100 Subject: [PATCH] Add days until column to birthdays table --- templates/birthday_list.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/templates/birthday_list.html b/templates/birthday_list.html index 6ab4811..8443685 100644 --- a/templates/birthday_list.html +++ b/templates/birthday_list.html @@ -6,12 +6,22 @@

Birthdays

+ + + + + + + + {% for event in items %} + {% endfor %} +
DateEventDays
{{event.as_date.strftime("%a, %d, %b %Y")}} {{ event.title }}{{ event.delta_days(today) }}
{% endblock %}