diff options
| author | Claudomator Agent <agent@claudomator> | 2026-03-18 07:06:03 +0000 |
|---|---|---|
| committer | Claudomator Agent <agent@claudomator> | 2026-03-18 07:06:03 +0000 |
| commit | e3195a6534bae000a63e884ff647fac95d9d2498 (patch) | |
| tree | a75534ac746e4054a573978bc550fd2d835de8c4 /web/templates/partials/bugs.html | |
| parent | e72305237e16a8c32fb017261cce129a25d70e65 (diff) | |
chore: autocommit uncommitted changes
Diffstat (limited to 'web/templates/partials/bugs.html')
| -rw-r--r-- | web/templates/partials/bugs.html | 12 |
1 files changed, 12 insertions, 0 deletions
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 .}} +<div class="text-sm border-b border-gray-100 py-2"> + <p class="text-gray-900">{{.Description}}</p> + <p class="text-gray-400 text-xs">{{.CreatedAt.Format "Jan 2, 3:04 PM"}}</p> +</div> +{{end}} +{{else}} +<p class="text-gray-500 text-sm">No bugs reported yet.</p> +{{end}} +{{end}} |
