13 lines
291 B
Plaintext
13 lines
291 B
Plaintext
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>
|
|
}
|