34 lines
1.1 KiB
Handlebars
34 lines
1.1 KiB
Handlebars
<center>
|
|
<h2>ตารางการรักษาผู้ป่วย</h2>
|
|
<h3>
|
|
{{parent_company_name}} {{company_name}}<br/>
|
|
</h3>
|
|
<h4>
|
|
ประจำวันที่ {{date}}
|
|
</h4>
|
|
</center>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<th>รอบ</th>
|
|
<th>Ref.</th>
|
|
<th>ผู้ป่วย</th>
|
|
<th>นพ.</th>
|
|
<th>HD Case</th>
|
|
<th>หมายเหตุ</th>
|
|
</thead>
|
|
<tbody>
|
|
{{#each lines }}
|
|
<tr style="background-color: {{success_color}}">
|
|
<td style="background-color: {{cycle_color}}">{{cycle_name}}</td>
|
|
<td><a href="/ui#name=clinic_visit&active_id={{visit_id}}&mode=form">{{number}}</a></td>
|
|
<td>{{patient_name}}</td>
|
|
<td>{{doctor_name}}</td>
|
|
<td><a href="/ui#name=clinic_hd_case&active_id={{hd_case_id}}&mode=form">{{hd_case_number}}</a></td>
|
|
<td>{{note}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
<tfoot>
|
|
</tfoot>
|
|
</table>
|