{% extends 'onlineanywhere_base.html' %} {% block content %}
Edit All Planned Expenses Delete Profile



LAST DATABASE UPDATE: {{ chelt_app.last_inptimestamp }}   ||   Date From: {{ dataFrom }}   |   Date Bis: {{ dataBis }}
EXPENSES SUMMARY
Expenses
{{chelt_app.tot_val_of_expenses}}
# Expenses
{{chelt_app.tot_no_of_expenses}}
Monthly
{{chelt_app.tot_val_of_monthly_expenses}}
# Monthly
{{chelt_app.tot_no_of_monthly_expenses}}
Irregular
{{chelt_app.tot_val_of_irregular_expenses}}
# Irregular
{{chelt_app.tot_no_of_irregular_expenses}}
{% for conto, (val, trans_no) in chelt_app.expenses_per_conto.items() %} {% if trans_no and conto != 'all' %}
{{conto}}
{{val}}
{% endif %} {% endfor %}

{% for colName in chelt_app.tableHead %} {% if colName in chelt_app.displayExpensesTableHead %} {% endif %} {% endfor %} {% for row in chelt_app.expenses %} {% for col in row %} {% if chelt_app.tableHead[loop.index0] in chelt_app.displayExpensesTableHead %} {% endif %} {% endfor %} {% endfor %}
{{ colName }}Edit
{{ col }}Edit

INCOME SUMMARY
Income
{{chelt_app.tot_val_of_income}}
# Income
{{chelt_app.tot_no_of_income}}

{% for colName in chelt_app.tableHead %} {% if colName in chelt_app.displayExpensesTableHead %} {% endif %} {% endfor %} {% for row in chelt_app.income %} {% for col in row %} {% if chelt_app.tableHead[loop.index0] in chelt_app.displayExpensesTableHead %} {% endif %} {% endfor %} {% endfor %}
{{ colName }}Edit
{{ col }}Edit
{% endblock %}