summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/templates/recipe_edit.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html
index 9069d4a..af9eb88 100644
--- a/data/templates/recipe_edit.html
+++ b/data/templates/recipe_edit.html
@@ -10,12 +10,11 @@
<a href="/index.html">HOME</a>
<a href="/add_recipes">add recipe</a>
</nav>
- <h1>Edit a recipe</h1>
+ <h1>{{.Title}}</h1>
</header>
<main>
- <p>Recipe ID: {{.Id}}</p>
- <pre contenteditable="true" id="editor"><code>{{.Text}}</code></pre>
+ <pre contenteditable="true" id="editor">{{.Text}}</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>