diff options
author | xengineering <me@xengineering.eu> | 2023-09-17 11:07:08 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-09-17 11:07:08 +0200 |
commit | ea54de7d32e6b576ccfb430e7e57811b7c4587fe (patch) | |
tree | 4182e9c401e571adb53f1d6cbe2b072c171c87b2 /data/templates/recipe_edit.html | |
parent | d0f58c4812c8b5821e9ed15806fae44f7b1fb095 (diff) | |
download | ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar.zst ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.zip |
Remove complete implementation
Restarting from scratch seems to be the fastest approach to switch to
sqlite and get rid of some other structural mistakes from the past.
Diffstat (limited to 'data/templates/recipe_edit.html')
-rw-r--r-- | data/templates/recipe_edit.html | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html deleted file mode 100644 index 6ef41f8..0000000 --- a/data/templates/recipe_edit.html +++ /dev/null @@ -1,26 +0,0 @@ -<!DOCTYPE html> - -<html> - - {{ template "head.html" }} - - <body> - <header> - <nav> - <a href="/index.html">HOME</a> - <a href="/add_recipes">add recipe</a> - </nav> - <h1>{{.Title}}</h1> - </header> - - <main> - <form action="/recipe/edit" method="POST"> - <input type="hidden" name="id" value="{{.Id}}" /> - <textarea style="resize:none;font-family:monospace, monospace;font-size: 1rem;" rows="18" wrap="soft" name="text">{{.Text}}</textarea> - <button type="submit">save</button> - <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a> - </form> - {{ template "footer.html" }} - </main> - </body> -</html> |