diff options
author | xengineering <me@xengineering.eu> | 2024-03-03 15:11:53 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-03 16:44:54 +0100 |
commit | bee8b4cc59fd24fc1b924a6160b8eaa221405aeb (patch) | |
tree | ea77d0f9fa8ff4a14700427a15af722b12f0abee | |
parent | b19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35 (diff) | |
download | ceres-bee8b4cc59fd24fc1b924a6160b8eaa221405aeb.tar ceres-bee8b4cc59fd24fc1b924a6160b8eaa221405aeb.tar.zst ceres-bee8b4cc59fd24fc1b924a6160b8eaa221405aeb.zip |
view: Provide recipe deletion
-rw-r--r-- | view/html/recipe-confirm-deletion.html | 21 | ||||
-rw-r--r-- | view/html/recipe.html | 1 | ||||
-rw-r--r-- | view/recipe.go | 1 |
3 files changed, 23 insertions, 0 deletions
diff --git a/view/html/recipe-confirm-deletion.html b/view/html/recipe-confirm-deletion.html new file mode 100644 index 0000000..7e839cb --- /dev/null +++ b/view/html/recipe-confirm-deletion.html @@ -0,0 +1,21 @@ +{{define "recipe-confirm-deletion"}} +<!DOCTYPE html> +<html> + {{ template "head" }} + <header> + <nav> + <a href="/recipes">HOME</a> + </nav> + <h1>Delete a recipe</h1> + </header> + <body> + <main> + <p>Do you really want to delete this recipe?</p> + <a href="/recipe/{{.Id}}"><button type="button">cancel</button></a> + <button onclick="del('/recipe/{{.Id}}')" style="background-color:red">delete</button> + </main> + {{ template "footer" }} + <script src="/static/view/static/ceres.js"></script> + </body> +</html> +{{end}} diff --git a/view/html/recipe.html b/view/html/recipe.html index 43bbb2e..7b1a70d 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -14,6 +14,7 @@ <p><a href="{{.Url}}">original recipe</a></p> <p>{{.Notes}}</p> <a href="/recipe/{{.Id}}?view=recipe-edit"><button>edit</button></a> + <a href="/recipe/{{.Id}}?view=recipe-confirm-deletion"><button style="background-color:red">delete</button></a> </main> {{ template "footer" }} </body> diff --git a/view/recipe.go b/view/recipe.go index c488481..0b545d9 100644 --- a/view/recipe.go +++ b/view/recipe.go @@ -32,6 +32,7 @@ func RecipeRead(w http.ResponseWriter, r *http.Request) { valid_templates := []string{ "recipe", "recipe-edit", + "recipe-confirm-deletion", } for _, v := range valid_templates { if template == v { |