{% extends "layout_acc.html" %} {% block content %}

{{ current_user.name }}

Investments:

{% for n in inv %} {% endfor %}
account_number cpr_number creation date
{{n[0]}} {{n[1]}} {{n[2]}}

Investment accounts:

{% for n in inv_sums %} {% endfor %}
account_number cpr_number account created deposit total (CD)
{{n[0]}} {{n[1]}} {{n[2]}} {{n[3]}}

Investment certificats of deposit:

{% for n in inv_cd_list %} {% endfor %}
acc cd_number start_date maturity_date rate amount
{{n[0]}} {{n[3]}} {{n[4]}} {{n[5]}} {{n[6]}} {{n[7]}}
{% endblock content %}