From fbc2d66a845267c9f3402260fe1ff321d864b96d Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Thu, 5 Feb 2026 20:46:07 +0000 Subject: [PATCH] refactor(home): move quick notes pills to card footer with icon-only brew again - Move quick notes pills into border-t footer row, left-aligned - Show "No Notes" muted pill when brew has no quick notes - Replace text "Brew Again" button with compact refresh icon button - Footer now always visible (pills + optional brew-again action) --- templates/pages/home.html | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/templates/pages/home.html b/templates/pages/home.html index dee5c29..04e28ed 100644 --- a/templates/pages/home.html +++ b/templates/pages/home.html @@ -94,17 +94,19 @@

{{ brew.grind_setting }} · {{ brew.grinder_name }}

{{ brew.brewer_name }}{% if let Some(fp) = brew.filter_paper_name %} · {{ fp }}{% endif %}

- {% if !brew.quick_notes.is_empty() %} -
- {% for qn in brew.quick_notes %} - {{ qn.label }} - {% endfor %} -
- {% endif %} - {% if is_authenticated %} -
+
+
+ {% if !brew.quick_notes.is_empty() %} + {% for qn in brew.quick_notes %} + {{ qn.label }} + {% endfor %} + {% else %} + No Notes + {% endif %} +
+ {% if is_authenticated %}
@@ -119,14 +121,14 @@
+ {% endif %}
- {% endif %}
{% endfor %}