clinic/netforce_clinic/templates/report_hd_summary.hbs

26 lines
666 B
Handlebars

<center>
<h2>
Summary of the Hemodialysis
</h2>
<h3>
[{{company_name}}]<br/>
As at {{month}} {{year}}
</h3>
</center>
<table class="table table-striped">
<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>
</table>