mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
13 lines
430 B
HTML
13 lines
430 B
HTML
|
<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>
|