feat: html template

This commit is contained in:
u80864958
2025-08-22 11:47:34 +02:00
parent 68b0256f77
commit 2e279c9b13
14 changed files with 763 additions and 13 deletions

15
report/resource.go Normal file
View File

@@ -0,0 +1,15 @@
package report
import (
"html/template"
"time"
"git.schreifuchs.ch/lou-taylor/accounting/issue"
)
type Report struct {
Date time.Time
Issues []issue.Issue
Style template.CSS
Total string
}