summaryrefslogtreecommitdiff
path: root/templates/parts/entryRows.html
blob: 1b364e34243899cce1fe0b23b8d71beb0f54bc3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<tbody hx-trigger="changedTasks from:body" hx-get="/entryRows">
  {{ range $task := .Tasks }}
  <tr>
    <td>{{ $task.Id }}</td>
    <td><input type="time" disabled value="{{formatTime $task.From }}" /></td>
    <td><input type="time" disabled value="{{formatTime $task.To }}" /></td>
    <td>{{ if $task.Tag}}{{ $task.Tag }}{{end}}</td>
    <td>{{ $task.Comment }}</td>
    <td></td>
  </tr>
  {{ end }}
</tbody>