From 40868be7d4b9e1d9909a19dccc25ec49c1b5924b Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 11 Feb 2024 22:44:32 +0100 Subject: view: Implement GET handler for model.Recipes --- view/recipes.go | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 view/recipes.go (limited to 'view/recipes.go') diff --git a/view/recipes.go b/view/recipes.go new file mode 100644 index 0000000..3a5fbf8 --- /dev/null +++ b/view/recipes.go @@ -0,0 +1,23 @@ +package view + +import ( + "net/http" + + "xengineering.eu/ceres/model" +) + +func Recipes(w http.ResponseWriter, r *http.Request) { + recipes := make(model.Recipes, 0) + + err := recipes.Read() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + err = html.ExecuteTemplate(w, "recipes", recipes) + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } +} -- cgit v1.2.3-70-g09d2