init
All checks were successful
release-tag / release-image (push) Successful in 2m3s

This commit is contained in:
2026-05-04 22:25:50 +02:00
parent be81c2bf92
commit 270c13af5b
21 changed files with 1839 additions and 1 deletions

1
templates/audit.html Normal file
View File

@@ -0,0 +1 @@
{{define "content"}}<h1>Audit-Log</h1><section class="card"><table><thead><tr><th>Zeit</th><th>Aktion</th><th>Objekt</th><th>Info</th></tr></thead><tbody>{{range .Audit}}<tr><td>{{.CreatedAt}}</td><td>{{.Action}}</td><td>{{.Entity}}</td><td>{{.Message}}</td></tr>{{end}}</tbody></table></section>{{end}}{{template "base" .}}