{% extends "frontend/base.html" %} {% block content %}

Budget d'hackens

{% for budgetGroup in object_list %}

Budget {{ budgetGroup.name }}: {{ budgetGroup.get_total }}€

{% for line in budgetGroup.budgetline_set.all %} {% endfor %}
Date Libellé Montant Ajouté par Facture
{{ line.date }} {{ line.title }} {{ line.amount }}€ {{ line.author.name }} {{ line.facture }}
{% endfor %}
{% endblock %}