{% include 'partials/header.html' %} {% load material_form %}

Schlussrechnung

{% for cost_center, accounts in cost_center_accounts.items %}
{{ cost_center }}
Buchungskonto Budget Einnahmen Ausgaben Reste
{% for account in accounts %}
{{ account.name }} {{ account.budget }} € {% if account.income %}{{ account.saldo }} €{% endif %} {% if not account.income %}{{ account.saldo }} €{% endif %} {{ account.rest }} €
{% endfor %}
{% endfor %}
{% include 'partials/footer.html' %}