summaryrefslogtreecommitdiff
path: root/web/templates/partials/bugs.html
blob: cb5ba258353946c28c04e7f33b9025de7413b027 (plain)
1
2
3
4
5
6
7
8
9
10
11
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}}