summaryrefslogtreecommitdiff
path: root/data/templates/recipe_edit.html
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-01 21:18:29 +0200
committerxengineering <me@xengineering.eu>2023-04-02 21:52:10 +0200
commitbae6e34c9119750b2cba2a2ce6d88e9f8c895900 (patch)
treec171db86da17301c1fec735e1f10f4e9d91f1b41 /data/templates/recipe_edit.html
parent996725cb4735e1026bb3409d52b5a61bc8274fd2 (diff)
downloadceres-bae6e34c9119750b2cba2a2ce6d88e9f8c895900.tar
ceres-bae6e34c9119750b2cba2a2ce6d88e9f8c895900.tar.zst
ceres-bae6e34c9119750b2cba2a2ce6d88e9f8c895900.zip
Switch from MariaDB to files
Using a database is way more complex (see the commit statistics of this commit) than using files to store recipe data. Also administration and usage is simpler.
Diffstat (limited to 'data/templates/recipe_edit.html')
-rw-r--r--data/templates/recipe_edit.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html
index 4860c6a..9069d4a 100644
--- a/data/templates/recipe_edit.html
+++ b/data/templates/recipe_edit.html
@@ -15,7 +15,7 @@
<main>
<p>Recipe ID: {{.Id}}</p>
- <pre contenteditable="true" id="editor"><code>{{.DescriptionMarkdown}}</code></pre>
+ <pre contenteditable="true" id="editor"><code>{{.Text}}</code></pre>
<button onclick="save()">save</button>
<a href="/recipe?id={{.Id}}"><button>back</button></a>
<a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a>