diff options
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -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) } |