{% extends "base.html" %} {% block title %}Dashboard – AAZ Accounting{% endblock %} {% block page_title %}Dashboard comptable{% endblock %} {% block topbar_actions %} ⬆ Importer un relevé {% endblock %} {% block content %}
Recettes HT
{{ "%.2f"|format(kpis.recettes) }} €
{{ selected_year }}
Charges HT
{{ "%.2f"|format(kpis.charges_ht) }} €
Résultat estimé
{{ "%.2f"|format(kpis.resultat) }} €
TVA collectée
{{ "%.2f"|format(kpis.tva_collectee) }} €
TVA déductible
{{ "%.2f"|format(kpis.tva_deductible) }} €
Solde TVA à payer
{{ "%.2f"|format(kpis.tva_solde) }} €
Collectée – Déductible
{% if kpis.pending_entries > 0 %}
En attente validation
{{ kpis.pending_entries }}
{% endif %}
Dépenses vs Recettes – {{ selected_year }}
Répartition TVA
Top comptes de charge Exporter Sage
{% for acc in top_accounts %} {% else %} {% endfor %}
CompteLibelléMontant HT
{{ acc.account }} {{ acc.label }} {{ "%.2f"|format(acc.total) }} €
Aucune donnée
{% if recent_entries %}
Écritures à valider Voir tout →
{% for e in recent_entries %} {% endfor %}
DatePièceLibellé CompteDébit ConfianceAction
{{ e.entry_date.strftime('%d/%m/%Y') }} {{ e.piece_ref or '–' }} {{ e.label[:50] }}{% if e.label|length > 50 %}…{% endif %} {{ e.account_number }} {% if e.debit %}{{ "%.2f"|format(e.debit) }} €{% endif %} {% set conf = e.classification_confidence %} {{ "%.0f"|format(conf * 100) }}%
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}