From 2a0d997927bfb3727b1158809384052eb17934a6 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Thu, 26 Dec 2024 17:23:29 +1100 Subject: [PATCH] Lighten shade of gray on font of date on weekly/monthly view --- app/templates/dashboard.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/dashboard.html b/app/templates/dashboard.html index b2fbf97..ba56b1c 100644 --- a/app/templates/dashboard.html +++ b/app/templates/dashboard.html @@ -233,7 +233,7 @@ {% for i in range(7) %} {% set day = today - timedelta(days=today.weekday() - i) %}
-
{{ day.strftime('%a, %b %d') }}
+
{{ day.strftime('%a, %b %d') }}
{% if day in readings_by_date %} {% for reading in readings_by_date[day]|sort(attribute="timestamp", reverse = True) %} -
{{ current_day.day }}
+
{{ current_day.day }}
{% if current_day in readings_by_date %}