update
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<table mat-table [dataSource]="quotas">
|
||||
|
||||
<ng-container matColumnDef="name">
|
||||
<th mat-header-cell *matHeaderCellDef> {{'quotas.name' | i18n}} </th>
|
||||
<td mat-cell *matCellDef="let quota"> {{quota.name}} </td>
|
||||
</ng-container>
|
||||
|
||||
<ng-container matColumnDef="quota">
|
||||
<th mat-header-cell *matHeaderCellDef> {{'quotas.value' | i18n}} </th>
|
||||
<td mat-cell *matCellDef="let quota">{{quota.value}} {{quota.unit}}</td>
|
||||
</ng-container>
|
||||
|
||||
<tr mat-header-row *matHeaderRowDef="quotaColumns"></tr>
|
||||
<tr mat-row *matRowDef="let myRowData; columns: quotaColumns"></tr>
|
||||
</table>
|
||||
Reference in New Issue
Block a user