{% extends "frontend/base.html" %} {% block content %} Budget d'hackens {% for budgetGroup in object_list %} Budget {{ budgetGroup.name }}: {{ budgetGroup.get_total }}€ Date Libellé Montant Ajouté par Facture {% for line in budgetGroup.budgetline_set.all %} {{ line.date }} {{ line.title }} {{ line.amount }}€ {{ line.author.name }} {{ line.facture }} {% endfor %} {% endfor %} {% endblock %}