42 |

{% if current_account == null %}Unified Inbox{% else %}{{current_account.name}}{% endif %}

43 | {% if current_account != null %} 44 |
45 |
Account Details
46 |
47 |
    48 |
  • Owner: {{current_account.owner}}
  • 49 |
  • Account Number: {{current_account.account_number}}
  • 50 |
  • Bank Code: {{current_account.bank_code}}
  • 51 |
  • IBAN: {{current_account.iban}}
  • 52 |
  • Balance: {{current_account.balance.balance}} {{current_account.currency}}
  • 53 |
54 |
55 |
56 | {% endif %} 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | {% for transaction in transactions %} 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | {% endfor %} 78 | 79 |
DateNameAccount NumberPurposeAmount
{{transaction.value_date|date("d.m.Y")}}{{transaction.name}}{{transaction.account_number}}{{transaction.purpose}}{{transaction.amount}}
80 |