summaryrefslogtreecommitdiff
path: root/view/html/recipe-step.html
blob: a50d76386d730d904897ddadb10f61fd0d76642f (plain)
1
2
3
4
5
6
7
8
9
10
{{define "recipe-step"}}					<section>
						<textarea rows="4" cols="50" placeholder="Step description" required>{{.Text}}</textarea>
						<div class="ingredients">{{range .Ingredients}}
{{ template "recipe-ingredient" . }}{{end}}
						</div>
						<button type="button">up</button>
						<button type="button" onclick="addNewIngredient(this);">add ingredient</button>
						<button type="button" onclick="parentNode.remove();">remove step</button>
						<button type="button">down</button>
					</section>{{end}}