2019-02-14 18:25:55 -05:00
|
|
|
<app-frame>
|
|
|
|
|
2019-03-03 12:11:36 +01:00
|
|
|
<div body #container class="container-fluid">
|
2019-03-03 21:17:42 +01:00
|
|
|
<app-face *ngFor="let person of favourites | async"
|
|
|
|
[person]="person"
|
|
|
|
[size]="size"></app-face>
|
2019-07-21 16:39:52 +02:00
|
|
|
<hr *ngIf="(nonFavourites | async).length > 0"/>
|
2019-03-03 21:17:42 +01:00
|
|
|
<app-face *ngFor="let person of nonFavourites | async"
|
|
|
|
[person]="person"
|
|
|
|
[size]="size"></app-face>
|
2019-07-21 16:39:52 +02:00
|
|
|
|
|
|
|
<div class="d-flex no-face-msg"
|
|
|
|
*ngIf="(nonFavourites | async).length == 0 && (favourites | async).length == 0">
|
|
|
|
<div class="flex-fill">
|
|
|
|
<h2>:( <ng-container i18n>No faces to show.</ng-container>
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-14 18:25:55 -05:00
|
|
|
</div>
|
|
|
|
</app-frame>
|