summaryrefslogtreecommitdiff
path: root/view/html/recipe-edit.html
diff options
context:
space:
mode:
Diffstat (limited to 'view/html/recipe-edit.html')
-rw-r--r--view/html/recipe-edit.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html
index cd3ba86..9a18e75 100644
--- a/view/html/recipe-edit.html
+++ b/view/html/recipe-edit.html
@@ -8,24 +8,24 @@
<h1>Recipe editor</h1>
</header>
<main>
- <form action="/recipe{{if ne .Id ""}}/{{.Id}}{{end}}" onsubmit="updateRecipe(event)">
- <input type="hidden" name="id" value="{{.Id}}">
- <input type="hidden" name="created" value="{{.Created}}">
- <input type="hidden" name="last_changed" value="{{.LastChanged}}">
+ <form action="/recipe{{if ne .Recipe.Id ""}}/{{.Recipe.Id}}{{end}}" onsubmit="updateRecipe(event)">
+ <input type="hidden" name="id" value="{{.Recipe.Id}}">
+ <input type="hidden" name="created" value="{{.Recipe.Created}}">
+ <input type="hidden" name="last_changed" value="{{.Recipe.LastChanged}}">
- <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="{{.Recipe.Title}}" placeholder="Title" required></p>
+ <p><input type="number" name="portions" value="{{.Recipe.Portions}}" placeholder="Portions"></p>
+ <p><input type="text" name="url" value="{{.Recipe.Url}}" placeholder="URL"></p>
+ <p><textarea name="notes" rows="4" cols="50" placeholder="Notes">{{.Recipe.Notes}}</textarea></p>
- <div id="steps">{{range .Steps}}
+ <div id="steps">{{range .Recipe.Steps}}
{{template "recipe-step" .}}{{end}}
</div>
<button type="button" onclick="addNewStep();">add step</button>
- <button type="submit">save</button>{{if eq .Id ""}}
+ <button type="submit">save</button>{{if eq .Recipe.Id ""}}
<button onclick="window.location.href='/recipes';">cancel</button>{{else}}
- <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button>{{end}}
+ <button onclick="window.location.href='/recipe/{{.Recipe.Id}}';">cancel</button>{{end}}
</form>
</main>
{{ template "footer" }}