{{define "content"}}

Debug Information

Table: {{.Table}}
TableAlias: {{.TableAlias}}
Total: {{.Total}}
Page: {{.Page}}
Pages: {{.Pages}}
Columns: {{json .Columns}}
Data Type: {{printf "%T" .Data}}
Data Length: {{len .Data}}
First Row: {{json (index .Data 0)}}

Columns

Data

{{range $i, $row := .Data}}
Row {{$i}}: {{json $row}}
{{end}}
{{end}}