diff options
author | xengineering <me@xengineering.eu> | 2024-03-23 20:50:29 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-04-04 14:51:01 +0200 |
commit | 9985d6f86fcee9d3c1d1148a5977190b673a8e8e (patch) | |
tree | d9882a3234fe9a929149262f70e7016e08ca596c /view/html/recipe-edit.html | |
parent | 36412cdf206f4766f818694fee5d0a00ce6bef46 (diff) | |
download | ceres-9985d6f86fcee9d3c1d1148a5977190b673a8e8e.tar ceres-9985d6f86fcee9d3c1d1148a5977190b673a8e8e.tar.zst ceres-9985d6f86fcee9d3c1d1148a5977190b673a8e8e.zip |
view: Add recipe step adding
Diffstat (limited to 'view/html/recipe-edit.html')
-rw-r--r-- | view/html/recipe-edit.html | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html index 18c4ab0..b5fea1d 100644 --- a/view/html/recipe-edit.html +++ b/view/html/recipe-edit.html @@ -29,14 +29,17 @@ <p> <label>Notes</label> <textarea name="notes" rows="4" cols="50">{{.Notes}}</textarea> - </p>{{range .Steps}} + </p> - <section> - <label>Text</label> - <textarea rows="4" cols="50">{{.Text}}</textarea> - <button type="button" onclick="parentNode.remove();">remove</button> - </section>{{end}} + <div id="steps">{{range .Steps}} + <section> + <label>Text</label> + <textarea rows="4" cols="50">{{.Text}}</textarea> + <button type="button" onclick="parentNode.remove();">remove</button> + </section>{{end}} + </div> + <button type="button" onclick="addNewStep();">add step</button> <button type="submit">save</button> <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button> </form> @@ -84,6 +87,18 @@ console.error('Network error:', error); }); } + + function addNewStep() { + var newStep = document.createElement("section"); + newStep.innerHTML = ` + <label>Text</label> + <textarea rows="4" cols="50"></textarea> + <button type="button" onclick="parentNode.remove();">remove</button> + `; + + var steps = document.querySelector("#steps"); + steps.appendChild(newStep); + } </script> </body> </html> |