funky-framadate-front/src/app/features/participation/poll/poll.component.html

13 lines
430 B
HTML
Raw Normal View History

2020-05-01 19:10:17 +02:00
<p-progressSpinner *ngIf="isLoading" class="has-text-centered"></p-progressSpinner>
<ng-container *ngIf="!isLoading">
<ng-container *ngIf="poll | async">
<!-- <app-poll-presentation></app-poll-presentation> -->
<h1>Sondage : {{ poll.title | async }}</h1>
</ng-container>
<ng-container *ngIf="!(poll | async)">
<app-page-not-found [message]="'PAGE_NOT_FOUND.POLL'"></app-page-not-found>
</ng-container>
</ng-container>