mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-21 09:03:02 +00:00
refactor: improve library account views
This commit is contained in:
41
src/app/modules/library/account/profile/profile-page.html
Normal file
41
src/app/modules/library/account/profile/profile-page.html
Normal file
@@ -0,0 +1,41 @@
|
||||
<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.profile.title' | translate | titlecase
|
||||
}}</ion-title>
|
||||
</ion-toolbar>
|
||||
</ion-header>
|
||||
<ion-content>
|
||||
<ion-card *ngIf="patron; else loading">
|
||||
<ion-card-content>
|
||||
<ion-grid>
|
||||
<ng-container *ngFor="let property of propertiesToShow">
|
||||
<ion-row *ngIf="patron[property]">
|
||||
<ion-col>
|
||||
{{
|
||||
'library.account.pages.profile.labels' + '.' + property
|
||||
| translate
|
||||
}}:
|
||||
</ion-col>
|
||||
<ion-col>
|
||||
<ng-container *ngIf="!['expires'].includes(property); else date">
|
||||
{{ patron[property] }}
|
||||
</ng-container>
|
||||
<ng-template #date>
|
||||
{{ patron[property] | amDateFormat: 'll' }}
|
||||
</ng-template>
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
</ng-container>
|
||||
</ion-grid>
|
||||
</ion-card-content>
|
||||
</ion-card>
|
||||
<ng-template #loading>
|
||||
<stapps-skeleton-simple-card [title]="false" [lines]="4">
|
||||
</stapps-skeleton-simple-card>
|
||||
</ng-template>
|
||||
</ion-content>
|
||||
Reference in New Issue
Block a user