summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-04-23 18:47:30 +0200
committerxengineering <me@xengineering.eu>2024-05-09 12:19:35 +0200
commita2aa866e630c45e1db4fadbb20cb1a9d24384a79 (patch)
tree7a15904e5401c37ea6eb03436d62fa6f74934cab
parenteb000e0cc514ebca753970ddb9135e09cb885d7a (diff)
downloadceres-a2aa866e630c45e1db4fadbb20cb1a9d24384a79.tar
ceres-a2aa866e630c45e1db4fadbb20cb1a9d24384a79.tar.zst
ceres-a2aa866e630c45e1db4fadbb20cb1a9d24384a79.zip
view: Fix cancel button on recipe create
-rw-r--r--view/html/recipe-edit.html24
1 files changed, 7 insertions, 17 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html
index bad8d60..9980e75 100644
--- a/view/html/recipe-edit.html
+++ b/view/html/recipe-edit.html
@@ -11,21 +11,10 @@
<form action="/recipe{{if ne .Id ""}}/{{.Id}}{{end}}">
<input type="hidden" name="id" value="{{.Id}}">
- <p>
- <input type="text" name="title" value="{{.Title}}" placeholder="Title" required>
- </p>
-
- <p>
- <input type="number" name="portions" value="{{.Portions}}" placeholder="Portions">
- </p>
-
- <p>
- <input type="text" name="url" value="{{.Url}}" placeholder="URL">
- </p>
-
- <p>
- <textarea name="notes" rows="4" cols="50" placeholder="Notes">{{.Notes}}</textarea>
- </p>
+ <p><input type="text" name="title" value="{{.Title}}" placeholder="Title" required></p>
+ <p><input type="number" name="portions" value="{{.Portions}}" placeholder="Portions"></p>
+ <p><input type="text" name="url" value="{{.Url}}" placeholder="URL"></p>
+ <p><textarea name="notes" rows="4" cols="50" placeholder="Notes">{{.Notes}}</textarea></p>
<div id="steps">{{range .Steps}}
<section>
@@ -35,8 +24,9 @@
</div>
<button type="button" onclick="addNewStep();">add step</button>
- <button type="submit">save</button>
- <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button>
+ <button type="submit">save</button>{{if eq .Id ""}}
+ <button onclick="window.location.href='/recipes';">cancel</button>{{else}}
+ <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button>{{end}}
</form>
</main>
{{ template "footer" }}