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

31 lines
714 B
HTML

<div class="p-grid">
<div class="p-col has-text-centered">
<h1>Participation</h1>
</div>
</div>
<div *ngIf="_isLoading | async" class="p-grid p-justify-center">
<div class="p-col has-text-centered">
<p-progressSpinner></p-progressSpinner>
</div>
</div>
<ng-container *ngIf="!(_isLoading | async)">
<ng-container *ngIf="!(_poll | async)">
<app-page-not-found [message]="'PAGE_NOT_FOUND.POLL'"></app-page-not-found>
</ng-container>
<ng-container *ngIf="_poll | async">
<div class="p-grid">
<div class="p-col">
<app-poll></app-poll>
</div>
</div>
<div class="p-grid">
<div class="p-col">
<app-poll-comment></app-poll-comment>
</div>
</div>
</ng-container>
</ng-container>