clinic/netforce_clinic/templates/report_hd_summary.hbs

35 lines
804 B
Handlebars
Raw Normal View History

2014-10-20 11:48:39 +00:00
<center>
<h2>
Summary of the Hemodialysis
</h2>
<h3>
2014-10-21 11:22:48 +00:00
[{{company_name}}]<br/>
2014-10-20 11:48:39 +00:00
</h3>
2014-10-27 03:31:49 +00:00
<h4>
As at {{month}} {{year}}
</h4>
2014-10-20 11:48:39 +00:00
</center>
2014-10-27 03:31:49 +00:00
<table class="table table-bordered">
2014-10-20 11:48:39 +00:00
<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>
2014-10-27 03:31:49 +00:00
<tfoot>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tfoot>
2014-10-20 11:48:39 +00:00
</table>