2024-10-14 13:13:51 -04:00
|
|
|
{{define "content_table"}}
|
|
|
|
<table class="table table-hover" {{ if .ID }}id="{{.ID}}"{{end}}>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
{{range $index, $col := .AllTH}}<th {{ if .ID }}id="{{.ID}}"{{end}} scope="col">{{ $col.Value }}</th>{{end}}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2024-10-15 23:00:46 -04:00
|
|
|
{{- range .AllTD}}<tr scope="row">{{range .}}<td {{ if .ID }}id="{{.ID}}"{{end}}>{{ .Value }}</td>{{end}}</tr>{{- end}}
|
2024-10-14 13:13:51 -04:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{end}}
|