package components import "gitea.henriburau.de/haw-lan/cod4watcher/models" import "strconv" templ CaptureTable(table models.ResultTable) {
for _, header := range table.Header { } for _, row := range table.Rows { for _, score := range row.Individual { } }
{ header.Title }
{ header.Subtitle }
{ row.Name } { strconv.Itoa(row.Total) } { strconv.Itoa(score) }
}