clinic/netforce_clinic/templates/report_cycle_setting.hbs

46 lines
1.5 KiB
Handlebars

<div style="margin-top: 20px;" class="alert alert-info" role="alert">
<strong>Click</strong> ที่รายชื่อผู้ป่วยเพื่อทำการแก้ไขรอบการรักษา
</div>
<table class="table table-condensed table-striped" style="margin-bottom:0px;">
<thead class="scroll-header">
<th>#</th>
<th>Patient</th>
<th>Last Update</th>
<th>Update By</th>
{{#unless department_id}}
<th>Department</th>
{{/unless}}
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
<th>Sunday</th>
</thead>
<tbody>
{{#each lines }}
<tr>
<td>{{no}}</td>
<td>
{{view "link" string=patient_name action="clinic_patient" action_options="mode=form" active_id=patient_id}}
</td>
<td>{{w_time}}</td>
<td>{{w_uid}}</td>
{{#unless ../department_id}}
<td>{{department_name}}</td>
{{/unless}}
<td>{{mon_cycle_id}}</td>
<td>{{tue_cycle_id}}</td>
<td>{{wed_cycle_id}}</td>
<td>{{thu_cycle_id}}</td>
<td>{{fri_cycle_id}}</td>
<td>{{sat_cycle_id}}</td>
<td>{{sun_cycle_id}}</td>
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>