30 lines
620 B
Handlebars
30 lines
620 B
Handlebars
<center>
|
|
<h4>Payment Matching</h4>
|
|
</center>
|
|
{{#if lines}}
|
|
<table class="table table-condensed table-striped">
|
|
<thead>
|
|
<th>Patient</th>
|
|
<th>Fee(1,500)</th>
|
|
<th>Medicine</th>
|
|
<th>Service</th>
|
|
<th>Status</th>
|
|
</thead>
|
|
<tbody>
|
|
{{#each lines}}
|
|
<tr>
|
|
<td>{{name}}</td>
|
|
<td>{{fee}}</td>
|
|
<td>{{medicine}}</td>
|
|
<td>{{service}}</td>
|
|
<td>{{state}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
<tfoot>
|
|
</tfoot>
|
|
</table>
|
|
{{else}}
|
|
Waiting matching.
|
|
{{/if}}
|