mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-20 08:33:11 +00:00
23 lines
572 B
HTML
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>
|