This commit is contained in:
2024-04-10 00:14:11 +02:00
parent c60dd3357f
commit 49f7be2a35
10 changed files with 93 additions and 20 deletions

View File

@ -5,6 +5,8 @@ import (
)
templ TimerView(timer model.Timer) {
<h1>This is timer { timer.Name }</h1>
<a href="/">Back to list</a>
<h1>This is timer { timer.Name } </h1>
<p><a href="/">Back to list</a></p>
<p>Start time: { timer.StartTime.String() }</p>
<p>End time: { timer.EndTime.String() }</p>
}