package views type ReportViewModel struct { Id string Url templ.SafeURL Total string CustomerName string From string To string Platform string PlatformFees string } templ ReportSection(report []*ReportViewModel) {

Your report

for _, row := range report { }
ID Name From To Total (€) Platform Platform Fees
{ row.Id } { row.CustomerName } { row.From } { row.To } { row.Total } { row.Platform } { row.PlatformFees }
}