blob: 14258f3d36862d441385b39ef0116efa5339f207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{{define "recipe-edit"}}
<!DOCTYPE html>
<html>
{{ template "head" }}
<body>
<header>
{{ template "nav" }}
<h1>Recipe editor</h1>
</header>
<main>
<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><label>⭐ Is favorite: <input id="is_favorite" type="checkbox" name="is_favorite" {{if .Recipe.IsFavorite}}checked{{end}}></label></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 .Recipe.Steps}}
{{template "recipe-step" .}}{{end}}
</div>
<button type="button" onclick="addNewStep();">add step</button>
<button type="submit">save</button>{{if eq .Recipe.Id ""}}
<button onclick="window.location.href='/recipes';">cancel</button>{{else}}
<button onclick="window.location.href='/recipe/{{.Recipe.Id}}';">cancel</button>{{end}}
</form>
</main>
{{ template "footer" }}
<template id="recipe-step-template">
{{template "recipe-step"}}
</template>
<template id="recipe-ingredient-template">
{{template "recipe-ingredient"}}
</template>
<script src="/static/view/static/ceres.js"></script>
</body>
</html>
{{end}}
|