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

Schlussrechnung

{% for costcenter, accounts in costcenter_accounts.items %}
{{ costcenter }}
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 %}
{% endblock %}
{% include 'partials/footer.html' %}