clinic/netforce_clinic/templates/report_dialyzer_drop.hbs~

64 lines
1.3 KiB
Handlebars
Raw Normal View History

<center>
<h2>
HD Case Report
</h2>
</center>
<table class="table table-striped">
<thead class="scroll-header">
<tr>
<th>
Cycle
</th>
<th>
Patient
</th>
<th>
Doctor
</th>
<th>
HD Fee
</th>
<th>
RC.No
</th>
<th>
Nurse
</th>
</tr>
</thead>
<tbody>
{{#each lines context=context}}
<tr>
<td colspan="10" style="font-weight:bold">
{{cycle}}
</td>
</tr>
<tr>
<td>
</td>
<td>
{{patient}}
</td>
<td>
{{doctor}}
</td>
<td>
{{total}}
</td>
<td>
{{rc_no}}
</td>
<td>
{{nurse}}
</td>
</tr>
{{/each}}
</tbody>
<tfoot>
<tr style="font-weight:bold">
</tr>
</tfoot>
</table>