summaryrefslogtreecommitdiff
path: root/view/timer.templ
blob: fa258eb9deb71cad66735b31d3c9ba2ecb3d007c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package view

import (
    "stevenlr.com/timer/model"
)

templ TimerView(timer model.Timer) {
    <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>
}