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

6 lines
131 B
HTML

<ul *ngIf="($elections | async)?.length">
<li *ngFor="let election of ($elections | async)">
{{election.name}}
</li>
</ul>