Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
<div class="accordion ewv acc-top" [ngClass]="{'split': isSplitView}">
<!-- Accordion Trigger -->
<input id={{accordionId}} type="checkbox" [(ngModel)]="collapseState" role="button" aria-label="Patient Information Section. Use the space bar to expand or collapse.">
<label for={{accordionId}}>Patient Information</label>
<!-- Copy Address Function -->
<div class="icon-function acc-adj">
<label for="IMG_patientAddress_patientInfo_1">Copy Address</label>
<img id="IMG_patientAddress_patientInfo_1" src="./../../assets/images/ic_copy_address_blue_24.svg" title="Copy Patient Address"
tabindex="0" (click)="copyPatientInformationAddressToClipboard()" (keyup.enter)="copyPatientInformationAddressToClipboard()">
</div>
<!-- Accordion Content -->
<div class="accordion-content row" id="ACC_patientInfo_1" role="region" aria-label="Patient Information Section">
<app-messages [ewvNoInfo]="!data" [ewvMsg]="patientInfoMsg"></app-messages>
<div class="row"></div>
<div *ngIf="data">
<div class="row">
<div *ngIf="data" class="info-table">
<!-- Patient Column One -->
<div class="col one">
<table id="TBL_infoColumn_patientInfo_1">
<tbody>
<tr>
<th id="TH_patientId_patientInfo_1">Patient ID:</th>
<td id="TD_patientId_patientInfo_1">{{data?.patientIdNumber}}</td>
</tr>
<tr>
<th id="TH_lastName_patientInfo_1">Last Name:</th>
<td id="TD_lastName_patientInfo_1">{{data?.lastName}}</td>
</tr>
<tr>
<th id="TH_firstName_patientInfo_1">First Name:</th>
<td id="TD_firstName_patientInfo_1">{{data?.firstName}}</td>
</tr>
<tr>
<th id="TH_dateOfBirth_patientInfo_1">Date of Birth:</th>
<td id="TD_dateOfBirth_patientInfo_1">{{data?.dateOfBirth}}</td>
</tr>
<tr>
<th id="TH_gender_patientInfo_1">Gender:</th>
<td id="TD_gender_patientInfo_1">{{data?.gender}}</td>
</tr>
<tr>
<th id="TH_dateOfDeath_patientInfo_1">Date of Death:</th>
<td id="TD_dateOfDeath_patientInfo_1">{{data?.dateOfDeath_5010}}</td>
</tr>
</tbody>
</table>
</div>
<!-- Patient Column Two -->
<div class="col one no-flow">
<table id="TBL_infoColumn_patientInfo_2">
<tbody>
<tr>
<th id="TH_addressOne_patientInfo_1">Address 1:</th>
<td id="TD_addressOne_patientInfo_1">
{{data?.addressLineOne}}</td>
</tr>
<tr>
<th id="TH_addressTwo_patientInfo_1">Address 2:</th>
<td id="TD_addressTwo_patientInfo_1">{{data?.addressLineTwo}}</td>
</tr>
<tr>
<th id="TH_city_patientInfo_1">City:</th>
<td id="TD_city_patientInfo_1">{{data?.city}}</td>
</tr>
<tr>
<th id="TH_state_patientInfo_1">State:</th>
<td id="TD_state_patientInfo_1">{{data?.state}}</td>
</tr>
<tr>
<th id="TH_zipCode_patientInfo_1">ZIP Code:</th>
<td id="TD_zipCode_patientInfo_1">{{data?.postalCode}}</td>
</tr>
<tr>
<th id="TH_country_patientInfo_1">Country:</th>
<td id="TD_country_patientInfo_1">{{data?.country}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>