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, 5 insertions, 1 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html
index 5467895..c46bbd4 100644
--- a/view/html/recipe-edit.html
+++ b/view/html/recipe-edit.html
@@ -16,7 +16,8 @@
<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}}{{template "recipe-step" .}}{{end}}
+ <div id="steps">{{range .Steps}}
+{{template "recipe-step" .}}{{end}}
</div>
<button type="button" onclick="addNewStep();">add step</button>
@@ -26,6 +27,9 @@
</form>
</main>
{{ template "footer" }}
+ <template id="recipe-step-template">
+{{template "recipe-step"}}
+ </template>
<script src="/static/view/static/ceres.js"></script>
</body>
</html>