<p></p>
<table class="table table-condensed table-striped">
    <thead>
        <tr>
            <th colspan="8" style="text-align:center;background-color:#f9e37d;">Import File</th>
            <th colspan="7" style="text-align:center;background-color:#2d6ed2;color:white">Netforce</th>
        </tr>
        <tr>
            <th>#</th>
            <th>Date</th>
            <th>HN</th>
            <th>PID</th>
            <th>Patient</th>
            <th>EPO</th>
            <th>Service</th>
            <th>Fee</th>

            <th>Date</th>
            <th>HN</th>
            <th>Patient</th>
            <th>EPO</th>
            <th>Service</th>
            <th>Fee</th>
            <th>Expense</th>
        </tr>
    </thead>
    <tbody>
        {{#each lines }}
                <tr>
                    <td>{{no}}</td>
                    <td>{{date}}</td>
                    <td>{{hn}}</td>
                    <td>{{pid}}</td>
                    <td>{{patient_name}}
                    <td>{{currency mdc_amt zero=""}}</td>
                    <td>{{currency srv_amt zero=""}}</td>
                    <td>{{currency fee_amt zero=""}}</td>
                    <td>{{nf_date}}</td>
                    <td>{{nf_hn}}</td>
                    <td>{{nf_patient_name}}
                    <td>{{currency nf_mdc_amt zero=""}}</td>
                    <td>{{currency nf_srv_amt zero=""}}</td>
                    <td>{{currency nf_fee_amt zero=""}}</td>
                    <td>{{expense_number}}</td>
                </tr>
        {{/each}}
    </tbody>
    <tfoot>
    </tfoot>
</table>