NINS_CODE/bahmni_config/openmrs/apps/customDisplayControl/views/admissionDetailsInfo.html
travelershot 70dda814aa codepush
2024-12-12 22:37:39 +06:00

31 lines
1.6 KiB
HTML

<link rel="stylesheet" href="/bahmni_config/openmrs/apps/registration/registrationCardLayout/css/custom-display.css"/>
<link rel="stylesheet" href="/bahmni_config/openmrs/apps/registration/registrationCardLayout/css/custom-print.css"
media="print"/>
<div class="placeholder-text" style="font-size: 14px;">
<h2 class="section-title">{{config.title}}</h2>
<table>
<tr style="border: none">
<td style="border: none; font-weight: bold;max-width: 25%;">Ward No</td>
<td style="border: none;max-width: 30%;">{{wardName}}</td>
</tr>
<tr style="border: none">
<td style="border: none; font-weight: bold;max-width: 25%;">Room</td>
<td style="border: none;max-width: 30%;">{{roomName}}</td>
</tr>
<tr style="border: none">
<td style="border: none; font-weight: bold;max-width: 25%;">Cabin / Bed No</td>
<td style="border: none;max-width: 30%;">{{bedNumber}}</td>
</tr>
<tr style="border: none">
<td style="border: none; font-weight: bold;max-width: 25%;">Admission Date</td>
<td style="border: none;max-width: 30%;">{{admissionDate | bahmniDate}}</td>
</tr>
<tr style="border: none">
<td style="border: none; font-weight: bold;max-width: 25%;">Release Date</td>
<td style="border: none;max-width: 30%;"><span
ng-if='releaseDate !="" '>{{releaseDate | bahmniDate}}</span>
<span ng-if='releaseDate =="" ' style="color: red;font-size: 16px;">Not Discharged yet</span></td>
</tr>
</table>
</div>