39 lines
858 B
Handlebars
39 lines
858 B
Handlebars
|
<!--
|
||
|
<center>
|
||
|
<h3>Payment Matching</h3>
|
||
|
<h4>From {{date_from}} To {{date_to}}</h4>
|
||
|
</center>
|
||
|
-->
|
||
|
<div class="row">
|
||
|
<div class="col-sm-6">
|
||
|
</div>
|
||
|
<div class="col-sm-6">
|
||
|
<h4>
|
||
|
<span class="pull-right label label-default">TOTAL: {{total_inv}}</span>
|
||
|
</h4>
|
||
|
</div>
|
||
|
</div>
|
||
|
<table class="table table-hover">
|
||
|
{{#ifeq view_type 'invoice'}}
|
||
|
<thead>
|
||
|
<th>Invoice Date</th>
|
||
|
<th>Number</th>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{#if lines}}
|
||
|
{{#each lines}}
|
||
|
<tr>
|
||
|
<td>{{date}}</td>
|
||
|
<td>{{number}}</td>
|
||
|
</tr>
|
||
|
{{/each}}
|
||
|
{{else}}
|
||
|
{{/if}}
|
||
|
</tbody>
|
||
|
<tfoot>
|
||
|
</tfoot>
|
||
|
{{else}}
|
||
|
TODO
|
||
|
{{/ifeq}}
|
||
|
</table>
|