-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathremote-user-review.component.html
More file actions
58 lines (50 loc) · 2.13 KB
/
Copy pathremote-user-review.component.html
File metadata and controls
58 lines (50 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<app-overview-section title="Remote Users"
[showEditRedirect]="showEditRedirect"
[editRoute]="editRoute"
(route)="onRoute($event)">
<ng-container *ngIf="remoteUsers?.length; else noRemoteUsers">
<ng-container *ngFor="let remoteUser of remoteUsers; first as first">
<hr *ngIf="!first" />
<div class="mb-3">
<app-enrollee-property title="Name"
makeBold="true">
{{ remoteUser | fullname | default }}
</app-enrollee-property>
</div>
<div class="mb-3">
<app-enrollee-property title="Email"
makeBold="true">
{{ remoteUser.email }}
</app-enrollee-property>
</div>
<div class="mb-3">
<strong>College Licence Information</strong>
</div>
<div class="ml-4 mb-3">
<app-enrollee-property title="College">
{{ remoteUser.remoteUserCertification.collegeCode | configCode: 'colleges' | default }}
</app-enrollee-property>
<app-enrollee-property title="Licence Class">
{{ remoteUser.remoteUserCertification.licenseCode | configCode: 'licenses' | default }}
</app-enrollee-property>
<app-enrollee-property *ngIf="remoteUser.remoteUserCertification.licenseNumber"
[title]="remoteUser.remoteUserCertification.collegeCode | licenseNumberLabel">
{{ remoteUser.remoteUserCertification.licenseNumber | default }}
</app-enrollee-property>
<app-enrollee-property *ngIf="remoteUser.remoteUserCertification.practitionerId"
title="PharmaNet ID">
{{ remoteUser.remoteUserCertification.practitionerId | default }}
</app-enrollee-property>
</div>
<div class="mb-3">
<app-enrollee-property title="Created Date"
makeBold="true">
{{ remoteUser.createdDate | formatDate }}
</app-enrollee-property>
</div>
</ng-container>
</ng-container>
<ng-template #noRemoteUsers>
None
</ng-template>
</app-overview-section>