{% load eo_facture %}
| Année | {% for i in income_by_year %}{{ i.year }} | {% endfor %}
|---|---|
| Encaissé | {% for i in income_by_year %}{{ i.paid|amountformat }} | {% endfor %}
| (récurrent) | {% for i in income_by_year %}{{ i.paid_recurrent|amountformat }} | {% endfor %}
| Facturé | {% for i in income_by_year %}{{ i.invoiced|amountformat }} | {% endfor %}
| (récurrent) | {% for i in income_by_year %}{{ i.invoiced_recurrent|amountformat }} | {% endfor %}
| Contracté | {% for i in income_by_year %}{{ i.contracted|amountformat }} | {% endfor %}
| (récurrent) | {% for i in income_by_year %}{{ i.contracted_recurrent|amountformat }} | {% endfor %}
| Sous-traité | {% for i in income_by_year %}{{ i.sous_traite|amountformat }} | {% endfor %}
| Total | {% for i in income_by_year %}{{ i.total|amountformat }} | {% endfor %}
| (récurrent) | {% for i in income_by_year %}{{ i.total_recurrent|amountformat }} | {% endfor %}
| (récurrent %) | {% for i in income_by_year %}{{ i.percent_total_recurrent|floatformat:1 }} % | {% endfor %}