14 lines
403 B
Plaintext
14 lines
403 B
Plaintext
|
|
each account in accounts
|
||
|
|
div
|
||
|
|
if account.status == "closed"
|
||
|
|
div Your account has been closed!
|
||
|
|
if account.status == "suspended"
|
||
|
|
div Your account has been temporarily suspended
|
||
|
|
if account.status == "open"
|
||
|
|
div
|
||
|
|
| Bank balance:
|
||
|
|
if account.negative
|
||
|
|
span.negative= account.balanceFormatted
|
||
|
|
else
|
||
|
|
span.positive= account.balanceFormatted
|