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
795 B
Handlebars

<div class="container mt-4">
<h1>{{ translate "en" "reports" }}</h1>
<table class="table table-striped mt-3">
<thead>
<tr>
<th scope="col">
{{ translate "en" "year-month" }}
</th>
<th scope="col">
{{ translate "en" "seller-source" }}
</th>
<th scope="col">
{{ translate "en" "amount" }}
</th>
<th scope="col">
{{ translate "en" "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 }}">{{ translate "en" "pdf" }}</a></td>
</tr>
{{/each}}
</tbody>
</table>
</div>