From 13542dd8073ee48aa25ef4958fd2b2da5d848092 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 22 Apr 2023 20:28:54 +0200 Subject: Update edit page --- data/templates/recipe_edit.html | 5 ++--- handler.go | 13 ++++++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html index 9069d4a..af9eb88 100644 --- a/data/templates/recipe_edit.html +++ b/data/templates/recipe_edit.html @@ -10,12 +10,11 @@ HOME add recipe -

Edit a recipe

+

{{.Title}}

-

Recipe ID: {{.Id}}

-
{{.Text}}
+
{{.Text}}
diff --git a/handler.go b/handler.go index c234d3d..ceb0e08 100644 --- a/handler.go +++ b/handler.go @@ -61,10 +61,17 @@ func recipeEditGet(w http.ResponseWriter, r *http.Request) { return } + rec, err := getRecipe(idStr) + if err != nil { + http.Error(w, "Could not get recipe.", 400) + return + } + recipe := struct{ - Id string - Text string - }{idStr, string(text)} + Id string + Title string + Text string + }{idStr, rec.Title, string(text)} ServeTemplate(w, "recipe_edit.html", recipe) } -- cgit v1.2.3-70-g09d2