clinic/netforce_clinic/templates/visit_dialy.hbs

34 lines
1.1 KiB
Handlebars
Raw Normal View History

2014-11-17 00:59:19 +00:00
<center>
2014-11-21 17:31:10 +00:00
<h2>ตารางการนัดผู้ป่วย</h2>
2014-11-17 00:59:19 +00:00
<h3>
{{parent_company_name}}&nbsp;{{company_name}}<br/>
</h3>
<h4>
ประจำวันที่ {{date}}
</h4>
</center>
<table class="table table-hover">
<thead>
<th>รอบ</th>
<th>Ref.</th>
<th>ผู้ป่วย</th>
2014-11-21 17:31:10 +00:00
<th>แพทย์</th>
2014-11-17 00:59:19 +00:00
<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>