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.html6
1 files changed, 1 insertions, 5 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html
index fb9cf74..5467895 100644
--- a/view/html/recipe-edit.html
+++ b/view/html/recipe-edit.html
@@ -16,11 +16,7 @@
<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>
- <textarea rows="4" cols="50" placeholder="Step description">{{.Text}}</textarea>
- <button type="button" onclick="parentNode.remove();">remove</button>
- </section>{{end}}
+ <div id="steps">{{range .Steps}}{{template "recipe-step" .}}{{end}}
</div>
<button type="button" onclick="addNewStep();">add step</button>