{{ 'library.account.pages.profile.title' | translate | titlecase }}
@if (patron) {
{{ 'library.account.pages.profile.labels.id' | translate }}:
{{ patron.id }}
{{ 'library.account.pages.profile.labels.name' | translate }}:
{{ patron.name_details?.title ?? '' }} {{ patron.name }}
@if (patron.email) {
{{ 'library.account.pages.profile.labels.email' | translate }}:
{{ patron.email }}
}
@if (patron.address) {
{{ 'library.account.pages.profile.labels.address' | translate }}:
{{ patron.address }}
}
@if (patron.expires) {
{{ 'library.account.pages.profile.labels.expires' | translate }}:
@if (isUnlimitedExpiry(patron.expires)) {
{{ 'library.account.pages.profile.values.unlimited' | translate }}
} @else {
{{ 'library.account.pages.profile.values.expires' | translate }}: {{
patron.expires | amDateFormat: 'll'
}}
}
}
} @else {
}