still working

This commit is contained in:
Dev
2025-12-13 15:31:52 +00:00
parent dda7abedb7
commit d69e01bbaf
18 changed files with 795 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
{{define "hx_pools"}}
<div>
<table class="min-w-full bg-white">
<thead>
<tr><th>Name</th><th>Health</th><th>Capacity</th></tr>
</thead>
<tbody>
{{range .}}
<tr class="border-t"><td>{{.Name}}</td><td>{{.Health}}</td><td>{{.Capacity}}</td></tr>
{{else}}
<tr><td colspan="3">No pools</td></tr>
{{end}}
</tbody>
</table>
</div>
{{end}}