summaryrefslogtreecommitdiff
path: root/view/timer.templ
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-16 23:45:34 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-16 23:45:34 +0200
commitdb00bfb79ae468a46e604140713a41c6d29d4635 (patch)
tree07bb5db27d790dae6af7b36851c7051e38feb765 /view/timer.templ
parentcac8554b0bb256bb303e77e61ce051ad901736a5 (diff)
idk random shit
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 45194c5..09b1345 100644
--- a/view/timer.templ
+++ b/view/timer.templ
@@ -38,7 +38,6 @@ templ timeButton(id model.UUID, value int, unit string) {
templ TimerInfo(timer model.Timer) {
<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>
<p>
@@ -57,6 +56,7 @@ templ TimerInfo(timer model.Timer) {
}
templ TimerView(timer model.Timer) {
+ <p><a href="/">Back to list</a></p>
<div class="timer-info">
@TimerInfo(timer)
</div>