From 2704cb76554b02f546bf3f9d2d11be98f2854b7b Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 23 Apr 2024 17:42:57 +0200 Subject: Remove default recipe name To avoid not clickable recipes on the /recipes page a default name used to be inserted on recipe creation. This was not a proper fix for the problem and also was annoying that the user first had to remove the default recipe name. This commit removes this default name. --- view/recipe.go | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'view/recipe.go') diff --git a/view/recipe.go b/view/recipe.go index 7b9980d..8236476 100644 --- a/view/recipe.go +++ b/view/recipe.go @@ -51,3 +51,13 @@ func RecipeRead(w http.ResponseWriter, r *http.Request) { return } } + +func RecipeCreate(w http.ResponseWriter, r *http.Request) { + recipe := model.Recipe{} + + err := html.ExecuteTemplate(w, "recipe-edit", recipe) + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } +} -- cgit v1.2.3-70-g09d2