{% extends "core/base.html" %} {% load bootstrap4 staticfiles %} {% block page_title %} Comptes de {{mois}} {{annee}} {% if next_month_url %} {% endif %} {% endblock %} {% block body_content %}
{% bootstrap_messages %}
{% if not object_list %}

Aucune donnée

{% else %} {% for d in object_list %} {% endfor %}
Date Description Etiquette Montant Actions
{{ d.date }} {{ d.description }} {{ d.etiquette }} {{ d.montant }}
{% endif %}

Balance {{ data.balance|floatformat:-2 }} €

Dépenses
    {% for label, montant in data.par_etiquette.items %}
  • {{ label }} {{ montant|floatformat:-2 }} €
  • {% endfor %}
{% endblock %}