diff options
Diffstat (limited to 'view/html/recipe.html')
-rw-r--r-- | view/html/recipe.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/html/recipe.html b/view/html/recipe.html index 59ed575..c2d9ddc 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -9,8 +9,8 @@ <body> <main> <p> - <a class="button" href="/recipe/{{.Id}}?view=recipe-edit">edit</a> - <a class="button" style="background-color:red" href="/recipe/{{.Id}}?view=recipe-confirm-deletion">delete</a> + <button onclick="window.location.href='/recipe/{{.Id}}?view=recipe-edit';">edit</button> + <button style="background-color:red" onclick="window.location.href='/recipe/{{.Id}}?view=recipe-confirm-deletion';">delete</button> </p>{{ if ne .Portions "" }} <p><i>Portions:</i> {{.Portions}}</p>{{end}}{{ if ne .Url "" }} <p><i>Original recipe:</i> <a href="{{.Url}}">link</a></p>{{end}}{{ if ne .Notes "" }} |