summaryrefslogtreecommitdiff
path: root/templates/parts/entryRows.html
diff options
context:
space:
mode:
authorJulian Jørgensen <julian@jtle.dk>2024-05-23 21:34:28 +0200
committerJulian Jørgensen <julian@jtle.dk>2024-05-23 21:34:28 +0200
commit19f8454a680c5231df68fee36ed9758587df316c (patch)
tree33521610573c6e075a5625e861c8677caa5dc615 /templates/parts/entryRows.html
parentdd11cf4ab199e5d53d03dc95b24007a12727ad70 (diff)
Rudimentary task editing
Diffstat (limited to 'templates/parts/entryRows.html')
-rw-r--r--templates/parts/entryRows.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/parts/entryRows.html b/templates/parts/entryRows.html
new file mode 100644
index 0000000..1b364e3
--- /dev/null
+++ b/templates/parts/entryRows.html
@@ -0,0 +1,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>