26 lines
600 B
Handlebars
26 lines
600 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_hd_case&tab_no=3">{{amount}}</a></td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|