{% extends 'base.html' %} {% block content %} INCOME VS EXPENSES OVERALL
==========================
Income vs Expenses: {{tot_val_of_expenses_income}}
# Income & Expenses: {{tot_no_of_expenses_income}}

FILTER EXPENSES
========================================================================================================================

Date From
Date bis
Conto
Monthly
Year

FILTERED DATES
========================================================================================================================
Data From: {{dataFrom}}
Data Bis: {{dataBis}}

VALUES AND NUMBERS OF EXPENSES
========================================================================================================================
Expenses: {{tot_val_of_expenses}}
#Expenses: {{tot_no_of_expenses}}
Monthly: {{tot_val_of_monthly_expenses}}
#Monthly: {{tot_no_of_monthly_expenses}}
Irregular: {{tot_val_of_irregular_expenses}}
#Irregular: {{tot_no_of_irregular_expenses}}

{% for user in expenses %} {% endfor %}
table name value myconto freq payDay
{{user[0]}} {{user[2]}} {{user[3]}} {{user[4]}} {{user[5]}} {{user[10]}}

VALUES AND NUMBERS OF INCOME
========================================================================================================================
Total_Netto: {{total_netto}}
Total_Taxes: {{total_taxes}}
Total Brutto: {{total_brutto}}
Salary_Überweisung: {{salary_uberweisung}}
Salary_Abzuge: {{salary_abzuge}}
Salary_Netto: {{salary_netto}}
Salary_gesetzliche_abzuge: {{salary_gesetzliche_abzuge}}
Salary_Brutto: {{salary_brutto}}

{% for user in income %} {% endfor %}
table name value myconto freq payDay
{{user[0]}} {{user[2]}} {{user[3]}} {{user[4]}} {{user[5]}} {{user[10]}}
{% endblock %}