26 lines
663 B
Handlebars
26 lines
663 B
Handlebars
|
<center>
|
||
|
<h2>
|
||
|
Summary of the Hemodialysis
|
||
|
</h2>
|
||
|
<h3>
|
||
|
[Ratchawat : Saamsan4]<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>
|