summaryrefslogtreecommitdiff
path: root/view/timer.templ
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-15 23:59:00 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-15 23:59:00 +0200
commit9da246e91e7143536973bd9cfd1f11f4a6578f3b (patch)
tree88a269dc1c7583729ec3cd9269f9a83b3da22b35 /view/timer.templ
parent3d507d36ea2c7955d98a16b85cb7bc02c8923caa (diff)
Protect timer operations with session
Diffstat (limited to 'view/timer.templ')
-rw-r--r--view/timer.templ2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/timer.templ b/view/timer.templ
index a447d01..7e9ab7f 100644
--- a/view/timer.templ
+++ b/view/timer.templ
@@ -7,7 +7,7 @@ import (
templ TimerView(timer model.Timer) {
<div class="timer">
- <h1>This is timer { timer.Name } </h1>
+ <h1>Timer "{ timer.Name }"</h1>
<p><a href="/">Back to list</a></p>
<p>Start time: <local-date>{ timer.StartTime.AsUTCString() }</local-date></p>
<p>End time: <local-date>{ timer.EndTime.AsUTCString() }</local-date></p>