taggart

Simple golang tagging filesystem webapp
Log | Files | Refs

commit f4b7c92abb62157b636a85896d89031a3c40bf4c
parent 37b5c4667bbb73df8b7b2fba0f84dcc7ab44ab7b
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Tue,  7 Oct 2025 16:07:03 +0100

Make bulk tag summary clickable

Diffstat:
Mtemplates/bulk-tag.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/bulk-tag.html b/templates/bulk-tag.html @@ -76,7 +76,7 @@ <details><summary>Recent Files (for reference)</summary> {{range .Data.RecentFiles}} <div class="file-item"> - <span class="file-id">ID {{.ID}}:</span> {{.Filename}} + <span class="file-id">ID {{.ID}}:</span> <a href="/file/{{.ID}}" title="{{.Filename}}">{{.Filename}}</a> </div> {{else}} <div class="file-item">No files found</div>