% title $id ? "Account $id" : "Create account"; % my %r; % $r{ID} = begin % end % $r{name} = begin % end % $r{type} = begin (Currently there: <%= join(", ", @$types) %>) % end % $r{altId} = begin % end % $r{IBAN} = begin (may also be empty or '*' – s. help) % end
% for my $f ( $account->result_source->columns ) { % my $renderer = $r{$f} // do { % my $value = $account->$f // next; % begin <%= $value %> % end % };
<%= $renderer->() %>
% }
% my $help = begin

What to input into "IBAN"? To restrict outgoing payments from that account to a certain bank account, insert its account number. To allow outgoing payment to any bank account, input wildcard (*). To disallow outgoing payment from that account, input nothing.

When inserting a proper number, this number must be included in all outgoing payments from that account. Outgoing payments differ from internal payments in that transferCredit is undefined.

% end % stash help => $help;