From 2f1ac3a747c5865d2a32941ec151d863328c7e3d Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Sun, 4 Jan 2026 00:27:32 -0500 Subject: [PATCH] Switch flash messages to toast notifications MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Simple single-line toasts in top-right corner - Positioned below navbar (70px from top) - Auto-dismiss after 4 seconds - Color-coded: green success, yellow warning, red error 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontends/web/templates/base.html | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/frontends/web/templates/base.html b/frontends/web/templates/base.html index 7408ad7..5054bf0 100644 --- a/frontends/web/templates/base.html +++ b/frontends/web/templates/base.html @@ -65,19 +65,22 @@
- {% with messages = get_flashed_messages(with_categories=true) %} - {% if messages %} -
- {% for category, message in messages %} - {% block content %}{% endblock %}
@@ -92,6 +95,10 @@ + {% block scripts %}{% endblock %}