diff options
author | xengineering <me@xengineering.eu> | 2023-04-01 16:03:49 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-01 18:21:27 +0200 |
commit | 88107366bce6b7f7c788171a18c40ad102904ff4 (patch) | |
tree | 1477a16e0d4e4b2151c23c0194ed9860fe5a6eb3 /data | |
parent | eec9ddfd687a871880628b4a5e9b3c0541b534e2 (diff) | |
download | ceres-88107366bce6b7f7c788171a18c40ad102904ff4.tar ceres-88107366bce6b7f7c788171a18c40ad102904ff4.tar.zst ceres-88107366bce6b7f7c788171a18c40ad102904ff4.zip |
Implement recipe deletion
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/recipe_confirm_deletion.html | 26 | ||||
-rw-r--r-- | data/templates/recipe_edit.html | 1 |
2 files changed, 27 insertions, 0 deletions
diff --git a/data/templates/recipe_confirm_deletion.html b/data/templates/recipe_confirm_deletion.html new file mode 100644 index 0000000..08c981d --- /dev/null +++ b/data/templates/recipe_confirm_deletion.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> + +<html> + + {{ template "head.html" }} + + <body> + <header> + <nav> + <a href="/index.html">HOME</a> + <a href="/add_recipes">add recipe</a> + </nav> + <h1>Delete a recipe</h1> + </header> + + <main> + <p>Recipe ID: {{.Id}}</p> + <p>Do you really want to delete this recipe?</p> + <form action="/recipe/confirm-deletion?id={{.Id}}" method="POST"> + <button style="background-color:red" type="submit">delete</button> + </form> + <a href="/recipe?id={{.Id}}"><button>cancel</button></a> + {{ template "footer.html" }} + </main> + </body> +</html> diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html index d622ce1..b35587e 100644 --- a/data/templates/recipe_edit.html +++ b/data/templates/recipe_edit.html @@ -18,6 +18,7 @@ <pre contenteditable="true" id="editor"><code>{{.DescriptionMarkdown}}</code></pre> <button onclick="save()">save</button> <a href="/recipe?id={{.Id}}"><button>cancel</button></a> + <a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a> {{ template "footer.html" }} </main> |