Files
storage-appliance/internal/templates/hx_pools.html
2025-12-13 15:31:52 +00:00

17 lines
382 B
HTML

{{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}}