wahlrecht-frontend/src/app/elections/election-result/election-result.component.html

16 lines
791 B
HTML

<table mat-table [dataSource]="dataSource" [hidden]="electedCandidates == null" matSort (matSortChange)="announceSortChange($event)">
<ng-container matColumnDef="party">
<th mat-header-cell mat-sort-header *matHeaderCellDef i18n
i18n-sortActionDescription sortActionDescription="Sort by party">Party</th>
<td mat-cell *matCellDef="let row">{{row.party}}</td>
</ng-container>
<ng-container matColumnDef="seats">
<th mat-header-cell mat-sort-header i18n-sortActionDescription sortActionDescription="Sort by seats"
*matHeaderCellDef i18n>Seats</th>
<td mat-cell *matCellDef="let row">{{row.seats}}</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="resultColumns"></tr>
<tr mat-row *matRowDef="let row; columns: resultColumns"></tr>
</table>