Files
MiauInv/frontend/htmx/contents/dash/itemlist.html

20 lines
526 B
HTML

<table>
<thead>
<tr>
<th>Name</th>
<th>Category</th>
<th>Total</th>
<th>Free</th>
</tr>
</thead>
<tbody>
{{ range . }}
<tr>
<td style="font-weight: 600;">{{ .Name }}</td>
<td><span style="color: var(--text-muted);">{{ .Category }}</span></td>
<td style="font-family: monospace;">{{ .TotalQuantity }}</td>
<td style="font-family: monospace; color: var(--success);">{{ .FreeQuantity }}</td>
</tr>
{{ end }}
</tbody>
</table>