1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/ui/faces/faces.component.html

21 lines
657 B
HTML
Raw Normal View History

2019-02-15 07:25:55 +08:00
<app-frame>
2019-03-03 19:11:36 +08:00
<div body #container class="container-fluid">
2019-03-04 04:17:42 +08:00
<app-face *ngFor="let person of favourites | async"
[person]="person"
[size]="size"></app-face>
2019-07-21 22:39:52 +08:00
<hr *ngIf="(nonFavourites | async).length > 0"/>
2019-03-04 04:17:42 +08:00
<app-face *ngFor="let person of nonFavourites | async"
[person]="person"
[size]="size"></app-face>
2019-07-21 22:39:52 +08: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-15 07:25:55 +08:00
</div>
</app-frame>