From e8a202cb3dea37334ba696473d23c1bf60ea448f Mon Sep 17 00:00:00 2001 From: juancwu Date: Sat, 7 Feb 2026 15:14:51 +0000 Subject: [PATCH] feat: show up to 5 shopping lists in overview --- internal/ui/pages/app_space_overview.templ | 28 +++++++++++++++------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/internal/ui/pages/app_space_overview.templ b/internal/ui/pages/app_space_overview.templ index a53fd51..267fa2b 100644 --- a/internal/ui/pages/app_space_overview.templ +++ b/internal/ui/pages/app_space_overview.templ @@ -59,17 +59,27 @@ templ SpaceOverviewPage(space *model.Space, lists []*model.ShoppingList, tags []

Shopping Lists

if len(lists) > 0 { + if len(lists) > 5 { + + View all shopping lists + + } } else {

No shopping lists yet.

}