diff options
Diffstat (limited to 'view/html/recipe-step.html')
-rw-r--r-- | view/html/recipe-step.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/html/recipe-step.html b/view/html/recipe-step.html index 3fd22a7..13c0bb7 100644 --- a/view/html/recipe-step.html +++ b/view/html/recipe-step.html @@ -1,7 +1,8 @@ {{define "recipe-step"}} <section> <textarea rows="4" cols="50" placeholder="Step description">{{.Text}}</textarea> - <div>{{range .Ingredients}} + <div class="ingredients">{{range .Ingredients}} {{ template "recipe-ingredient" . }}{{end}} </div> + <button type="button" onclick="addNewIngredient(this);">add ingredient</button> <button type="button" onclick="parentNode.remove();">remove step</button> </section>{{end}} |