summaryrefslogtreecommitdiff
path: root/view
diff options
context:
space:
mode:
Diffstat (limited to 'view')
-rw-r--r--view/html/recipe-edit.html2
-rw-r--r--view/html/recipes.html2
-rw-r--r--view/recipe.go10
3 files changed, 12 insertions, 2 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html
index 3925293..8d940f8 100644
--- a/view/html/recipe-edit.html
+++ b/view/html/recipe-edit.html
@@ -8,7 +8,7 @@
<h1>Recipe editor</h1>
</header>
<main>
- <form action="/recipe/{{.Id}}">
+ <form action="/recipe{{if ne .Id ""}}/{{.Id}}{{end}}">
<input type="hidden" name="id" value="{{.Id}}">
<p>
diff --git a/view/html/recipes.html b/view/html/recipes.html
index 89620ed..d9e720b 100644
--- a/view/html/recipes.html
+++ b/view/html/recipes.html
@@ -8,7 +8,7 @@
<h1>Recipes</h1>
</header>
<main>
- <p><button onclick="create('/recipe')">create</button></p>
+ <p><button onclick="window.location.href='/recipe/create';">create</button></p>
{{if ne (len .) 0}}
<p><input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..."></p>
<ul id="recipes">{{range .}}
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
+ }
+}