feat(budget): first draft
All checks were successful
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 1m17s

This commit is contained in:
2026-01-02 17:52:33 +01:00
parent 1be6d9cb11
commit 818dab401e
6 changed files with 43 additions and 12 deletions

View File

@@ -54,7 +54,7 @@ func (h HandlerImpl) handlePage() http.HandlerFunc {
// return
// }
comp := Page()
comp := page()
h.r.RenderLayout(r, w, comp, user)
}
}
@@ -113,7 +113,7 @@ func (h HandlerImpl) handlePost() http.HandlerFunc {
// To disable unused variable
slog.Info("test", "item", budget)
comp := Item()
h.r.Render(r, w, comp)
// comp := item()
// h.r.Render(r, w, comp)
}
}