From e3195a6534bae000a63e884ff647fac95d9d2498 Mon Sep 17 00:00:00 2001 From: Claudomator Agent Date: Wed, 18 Mar 2026 07:06:03 +0000 Subject: chore: autocommit uncommitted changes --- web/templates/partials/bugs.html | 12 ++++++++++++ web/templates/partials/lists-options.html | 4 ++++ web/templates/partials/task-detail.html | 12 ++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 web/templates/partials/bugs.html create mode 100644 web/templates/partials/lists-options.html create mode 100644 web/templates/partials/task-detail.html (limited to 'web/templates/partials') diff --git a/web/templates/partials/bugs.html b/web/templates/partials/bugs.html new file mode 100644 index 0000000..cb5ba25 --- /dev/null +++ b/web/templates/partials/bugs.html @@ -0,0 +1,12 @@ +{{define "bugs"}} +{{if .}} +{{range .}} +
+

{{.Description}}

+

{{.CreatedAt.Format "Jan 2, 3:04 PM"}}

+
+{{end}} +{{else}} +

No bugs reported yet.

+{{end}} +{{end}} diff --git a/web/templates/partials/lists-options.html b/web/templates/partials/lists-options.html new file mode 100644 index 0000000..f08fdcf --- /dev/null +++ b/web/templates/partials/lists-options.html @@ -0,0 +1,4 @@ +{{define "lists-options"}} +{{range .}} +{{end}} +{{end}} diff --git a/web/templates/partials/task-detail.html b/web/templates/partials/task-detail.html new file mode 100644 index 0000000..ace604f --- /dev/null +++ b/web/templates/partials/task-detail.html @@ -0,0 +1,12 @@ +{{define "task-detail"}} +
+

{{.Title}}

+
+ + + + + +
+
+{{end}} -- cgit v1.2.3