Added more frontend and some more login logic
This commit is contained in:
@@ -1,32 +1,20 @@
|
||||
<table>
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Kategorie</th>
|
||||
<th>Gesamt</th>
|
||||
<th>Frei</th>
|
||||
<th>Category</th>
|
||||
<th>Total</th>
|
||||
<th>Free</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
|
||||
{{ range . }}
|
||||
|
||||
<tr>
|
||||
|
||||
<td>{{ .Name }}</td>
|
||||
|
||||
<td>{{ .Category }}</td>
|
||||
|
||||
<td>{{ .TotalQuantity }}</td>
|
||||
|
||||
<td>{{ .FreeQuantity }}</td>
|
||||
|
||||
<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>
|
||||
Reference in New Issue
Block a user