summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-22 20:28:54 +0200
committerxengineering <me@xengineering.eu>2023-04-22 20:28:54 +0200
commit13542dd8073ee48aa25ef4958fd2b2da5d848092 (patch)
tree5b9f507530ca346d355d0ae88a9a95ab3945fa0b /handler.go
parent1dec0af24f22755e3d6debecaa8635dcab918698 (diff)
downloadceres-13542dd8073ee48aa25ef4958fd2b2da5d848092.tar
ceres-13542dd8073ee48aa25ef4958fd2b2da5d848092.tar.zst
ceres-13542dd8073ee48aa25ef4958fd2b2da5d848092.zip
Update edit page
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go13
1 files changed, 10 insertions, 3 deletions
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)
}