diff options
Diffstat (limited to 'view/recipe.go')
-rw-r--r-- | view/recipe.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/view/recipe.go b/view/recipe.go new file mode 100644 index 0000000..3739143 --- /dev/null +++ b/view/recipe.go @@ -0,0 +1,30 @@ +package view + +import ( + "net/http" + "strconv" + + "xengineering.eu/ceres/model" + + "github.com/gorilla/mux" +) + +func Recipe(w http.ResponseWriter, r *http.Request) { + id_str := mux.Vars(r)[`id`] + id, _ := strconv.Atoi(id_str) + + recipe := model.Recipe{} + recipe.Id = int64(id) + + err := recipe.Read() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + err = html.ExecuteTemplate(w, "recipe", recipe) + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } +} |