{% extends "compta/base.html" %} {% load l10n %} {% block titre %}Entrées / sorties{% endblock %} {% block extrastyle %} {% endblock %} {% block topbar %}

Entrées / sorties

{{ entreprise.nom }} — vue unifiée de toutes les opérations (recettes, dépenses, mouvements)
{% for m in messages %}
{{ m }}
{% endfor %}
Opérations
{{ nb }}
Entrées
{{ entrees|floatformat:2|unlocalize }} €
Sorties
{{ sorties|floatformat:2|unlocalize }} €
Solde
{{ total|floatformat:2|unlocalize }} €
Réinitialiser
{% endblock %} {% block content %} {% if entreprise %} {% if rows %}
{% for r in rows %} {% endfor %}
DateTypeLibelléCatégorie MontantTVA
{{ r.date|date:"d/m/Y" }} {{ r.type_label }} {{ r.libelle }} {{ r.categorie }}{% if r.neutre %}neutre{% endif %} {{ r.montant|floatformat:2|unlocalize }} € {% if r.tva %}{{ r.tva|floatformat:2|unlocalize }}{% else %}—{% endif %}
{% csrf_token %} 0 sélectionnée(s)
{% else %}
Aucune opération ne correspond à ces filtres.
{% endif %} {% endif %}
{{ cats_json|json_script:"cats-data" }} {% endblock %} {% block scripts %} {% endblock %}