WIP group sheet

feature/applicationv2
macniel 2025-10-16 00:06:54 +02:00
parent 5e41285b1c
commit e14e4e7108
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
<table class="inventory-table">
<thead>
<tr>
<th colspan="2"></th>
<th>Anzahl</th>
<th>Gewicht</th>
</tr>
</thead>
<tbody>
{{#each this}}
<tr class="equipment" data-id="{{this.id}}" draggable="true">
<td class="icon"><img alt="" src="{{this.icon}}" width="16" height="16"></td>
<td class="name">{{this.name}}</td>
<td class="quantity">{{this.quantity}}</td>
<td class="weight">{{this.weight}}</td>
</tr>
{{/each}}
</tbody>
</table>