Task Log display

This commit is contained in:
Samuel Lorch 2024-05-09 04:49:46 +02:00
parent f31fdfd3b5
commit 7a0564a210
4 changed files with 143 additions and 12 deletions

9
tmpl/task.tmpl Normal file
View file

@ -0,0 +1,9 @@
{{template "head"}}
<h2>Task {{.ID}}</h2>
<div class="task-log">
{{range $t := .Log}}
{{ $t }}<br/>
{{end}}
</div>
{{template "tail"}}