2017-01-15 16:27:22 +01:00
|
|
|
% title 'Transfer history';
|
|
|
|
|
|
|
|
<p>Reverse ordered list:</p>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr><th>Timestamp</th><th>Purpose (own/other/debit)</th><th>debit</th><th>credit</th><th>note</th></tr>
|
|
|
|
% while ( my $hr = $history->next ) {
|
|
|
|
<tr><td><%= $hr->date %></td><td>
|
|
|
|
% my $this = $hr->this_credit;
|
2017-01-15 22:03:06 +01:00
|
|
|
<strong>On <a href="/credit/<%= $hr->credId %>"><%= <%= $this->credId %></a>:</strong> <%== nl2br $this->purpose %><br>
|
2017-01-15 16:27:22 +01:00
|
|
|
% my $that = $hr->that_credit;
|
2017-01-15 22:03:06 +01:00
|
|
|
<strong>With <%= $that->account->ID %>/<a href="/credit/<%= $that->credId %>"><%= <%= $that->credId %></a>:</strong> <%== nl2br $that->purpose %><br>
|
|
|
|
<strong>Pay <%= $hr->billId %>:</strong> <%== nl2br $hr->purpose %>
|
|
|
|
</td><td class="number"><%== money $hr->debit %></td><td class="number"><%== money $hr->credit %></td><td><%= $hr->note %></td></tr>
|
2017-01-15 16:27:22 +01:00
|
|
|
% }
|
|
|
|
</table>
|