9 lines
339 B
Plaintext
9 lines
339 B
Plaintext
% title 'Bank statement';
|
|
|
|
<table>
|
|
<tr><th>Date</th><th>Purpose</th><th>Account</th><th>Debit</th><th>Credit</th></tr>
|
|
% while ( my $record = $records->next ) {
|
|
<tr><td><%= $record->date %></td><td><%= $record->purpose %></td><td><%= $record->account %></td><td><%= $record->debit %></td><td><%= $record->credit %></td></tr>
|
|
% }
|
|
</table>
|