summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-13 21:51:43 +0200
committerxengineering <me@xengineering.eu>2024-05-13 21:52:48 +0200
commitb5b72880a0b6e9f188b532c9b2ad360ff1dab2ea (patch)
tree492e5b106c3ae55ad07db7c677eb5216b3ef3bc0
parentbf328dd38a28cf44cfa81c7f1dcd95936d2d0301 (diff)
downloadceres-b5b72880a0b6e9f188b532c9b2ad360ff1dab2ea.tar
ceres-b5b72880a0b6e9f188b532c9b2ad360ff1dab2ea.tar.zst
ceres-b5b72880a0b6e9f188b532c9b2ad360ff1dab2ea.zip
view: Add HTML for editing recipe ingredients
-rw-r--r--view/html/recipe-ingredient.html6
-rw-r--r--view/html/recipe-step.html5
2 files changed, 10 insertions, 1 deletions
diff --git a/view/html/recipe-ingredient.html b/view/html/recipe-ingredient.html
new file mode 100644
index 0000000..9ea90be
--- /dev/null
+++ b/view/html/recipe-ingredient.html
@@ -0,0 +1,6 @@
+{{define "recipe-ingredient"}} <p>
+ <input type="text" placeholder="Amount" value="{{.Amount}}">
+ <input type="text" placeholder="Unit" value="{{.Unit}}">
+ <input type="text" placeholder="Type" value="{{.Type}}">
+ <button type="button" onclick="parentNode.remove();">remove ingredient</button>
+ </p>{{end}}
diff --git a/view/html/recipe-step.html b/view/html/recipe-step.html
index 8008d9c..3fd22a7 100644
--- a/view/html/recipe-step.html
+++ b/view/html/recipe-step.html
@@ -1,4 +1,7 @@
{{define "recipe-step"}} <section>
<textarea rows="4" cols="50" placeholder="Step description">{{.Text}}</textarea>
- <button type="button" onclick="parentNode.remove();">remove</button>
+ <div>{{range .Ingredients}}
+{{ template "recipe-ingredient" . }}{{end}}
+ </div>
+ <button type="button" onclick="parentNode.remove();">remove step</button>
</section>{{end}}