first commit
This commit is contained in:
@@ -1,4 +1,25 @@
|
|||||||
<nz-table #basicTable [nzData]="listOfData">
|
<nz-table #basicTable [nzData]="listOfData">
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
</thead>
|
<th>Nom</th>
|
||||||
|
<th>Duration</th>
|
||||||
|
<th>Caliber</th>
|
||||||
|
<th>quantity</th>
|
||||||
|
<th>Weight</th>
|
||||||
|
<th>Nec</th>
|
||||||
|
<th>MinimalQuantity</th>
|
||||||
|
</tr>
|
||||||
|
</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>
|
||||||
Reference in New Issue
Block a user