tren/views/table.html
ngn 4df8b90dae
All checks were successful
Build and publish the docker image / build (push) Successful in 58s
initial commit
Signed-off-by: ngn <ngn@ngn.tf>
2025-04-05 09:58:58 +03:00

18 lines
254 B
HTML

<table class="result">
<tr>
{{range .fields}}
<th>{{.}}</th>
{{end}}
</tr>
{{range .entries}}
<tr>
{{range .}}
<td>
{{.Text}}
<i>{{.Detail}}</i>
</td>
{{end}}
</tr>
{{end}}
</table>