first commit

This commit is contained in:
2025-11-13 18:08:52 +01:00
parent c75199b236
commit 3ec512f396

View File

@@ -1,4 +1,25 @@
<nz-table #basicTable [nzData]="listOfData"> <nz-table #basicTable [nzData]="listOfData">
<thead> <thead>
<tr>
<th>Nom</th>
<th>Duration</th>
<th>Caliber</th>
<th>quantity</th>
<th>Weight</th>
<th>Nec</th>
<th>MinimalQuantity</th>
</tr>
</thead> </thead>
<tbody>
@for (data of basicTable.data; track data) {
<tr>
<td>{{data.name}}</td>
<td>{{data.duration}}</td>
<td>{{data.caliber}}</td>
<td>{{data.quantity}}</td>
<td>{{data.weight}}</td>
<td>{{data.nec}}</td>
<td>{{data.minimalQuantity}}</td>
</tr>
</tbody>
</nz-table>