1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
fedihub-website/templates/reports/index.html.hbs

34 lines
658 B
Handlebars
Raw Normal View History

2020-10-22 05:15:58 +00:00
<div class="container mt-4">
<h1>Reports</h1>
<table class="table table-striped mt-3">
<thead>
<tr>
<th scope="col">
Year, month
</th>
<th scope="col">
Seller/source
</th>
<th scope="col">
Amount
</th>
<th scope="col">
Download
</th>
</tr>
</thead>
<tbody>
{{#each reports}}
<tr>
<td>{{ this.datetime }}</td>
<td>{{ this.party }}</td>
<td>{{ this.amount }}</td>
<td><a href="{{ this.download }}">PDF</a></td>
</tr>
{{/each}}
</tbody>
</table>
</div>