From 7914ac1ed75c04a9f417f59fdf63d354a59d036b Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Sun, 29 Mar 2026 19:48:24 -0600 Subject: [PATCH] feat: add summary stats bar to admin page Displays total entries, this week, this month, and newsletter opt-in count and percentage at the top of the admin view. Week/month boundaries are computed in America/Denver time and converted to UTC for SQLite comparison, handling DST correctly. --- templates/admin.html | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/templates/admin.html b/templates/admin.html index fdfd3a2..af7b06f 100644 --- a/templates/admin.html +++ b/templates/admin.html @@ -21,10 +21,13 @@
-
+

Guestbook Admin

- {{ current_user.username }} · {{ total }} entries + {{ current_user.username }} + {% if current_user.role != 'viewer' %} + Export CSV + {% endif %} {% if current_user.role == 'superadmin' %} Manage Users {% endif %} @@ -32,6 +35,13 @@
+
+ {{ stats.total }} total + {{ stats.week }} this week + {{ stats.month }} this month + {{ stats.newsletter_count }} newsletter ({{ stats.newsletter_pct }}%) +
+
{% for g in guests %}