treasuredb/templates/credit/list.html.ep

13 lines
577 B
Plaintext
Raw Normal View History

2017-01-15 16:27:22 +01:00
% title 'Income of ' . $account;
<p>Listed in reverse order:</p>
2017-01-15 16:27:22 +01:00
<table class="income">
<tr><th>Id</th><th>Date</th><th>Purpose</th><th>value</th><th>spent</th></tr>
% while ( my $credit = $credits->next ) {
<tr><td class="number"><a href="/credit/<%= $credit->credId %>"><%= $credit->credId %></a></td><td><%= $credit->date %></td><td><%== nl2br $credit->purpose %></td><td class="number"><%== money $credit->value %></td><td class="number <%= $credit->spent < $credit->value ? "mark" : "" %>"><%== money $credit->spent %></td></tr>
2017-01-15 16:27:22 +01:00
% }
</table>
2017-01-29 15:57:34 +01:00
%= include 'filter-widget'