Files
openstapps/src/app/modules/library/account/checked-out/checked-out-page.component.html
2022-01-31 19:08:29 +01:00

23 lines
572 B
HTML

<ion-header>
<ion-toolbar color="primary">
<ion-buttons slot="start">
<ion-back-button></ion-back-button>
<ion-menu-button></ion-menu-button>
</ion-buttons>
<ion-title>{{
'library.account.pages.checked_out.title' | translate | titlecase
}}</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ng-container *ngIf="checkedOutItems">
<stapps-paia-item
*ngFor="let checkedOutItem of checkedOutItems"
[item]="checkedOutItem"
pageName="checked_out"
>
</stapps-paia-item>
</ng-container>
</ion-content>