35 lines
804 B
Handlebars
35 lines
804 B
Handlebars
<center>
|
|
<h2>
|
|
Summary of the Hemodialysis
|
|
</h2>
|
|
<h3>
|
|
[{{company_name}}]<br/>
|
|
</h3>
|
|
<h4>
|
|
As at {{month}} {{year}}
|
|
</h4>
|
|
</center>
|
|
<table class="table table-bordered">
|
|
<thead class="scroll-header">
|
|
<th>Topic</th>
|
|
<th>Month</th>
|
|
<th>Amount</th>
|
|
</thead>
|
|
<tbody>
|
|
{{#each lines}}
|
|
<tr>
|
|
<td>{{topic}}</td>
|
|
<td>{{month}}</td>
|
|
<td><a style="text-decoration: underline" href="ui#name=clinic_report_hd_detail&defaults.date_from={{date_from}}&defaults.date_to={{date_to}}" >{{amount}}</a></td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|