diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/html/recipe-edit.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html index f8a6bd9..cd3ba86 100644 --- a/view/html/recipe-edit.html +++ b/view/html/recipe-edit.html @@ -10,6 +10,8 @@ <main> <form action="/recipe{{if ne .Id ""}}/{{.Id}}{{end}}" onsubmit="updateRecipe(event)"> <input type="hidden" name="id" value="{{.Id}}"> + <input type="hidden" name="created" value="{{.Created}}"> + <input type="hidden" name="last_changed" value="{{.LastChanged}}"> <p><input type="text" name="title" value="{{.Title}}" placeholder="Title" required></p> <p><input type="number" name="portions" value="{{.Portions}}" placeholder="Portions"></p> |