28 lines
637 B
Handlebars
28 lines
637 B
Handlebars
<center>
|
|
<h2>รายชื่อผู้ป่วยรับใหม่</h2>
|
|
<h3>
|
|
{{parent_company_name}} {{company_name}}<br/>
|
|
</h3>
|
|
<h4>
|
|
ประจำเดือน {{month}} {{year}}
|
|
</h4>
|
|
</center>
|
|
<table class="table">
|
|
<thead>
|
|
<th>#</th>
|
|
<th>ชื่อ</th>
|
|
<th>หมายเหตุ</th>
|
|
</thead>
|
|
<tbody>
|
|
{{#each lines}}
|
|
<tr>
|
|
<td>{{no}}</td>
|
|
<td>{{name}}</td>
|
|
<td>{{note}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
<tfoot>
|
|
</tfoot>
|
|
</table>
|