{% extends 'kfet/base.html' %} {% block title %}Comptes en négatifs{% endblock %} {% block content-header-title %}Comptes - Négatifs{% endblock %} {% block content %}
{{ negatives|length }}
compte{{ negatives|length|pluralize }} en négatif
Total: {{ negatives_sum|floatformat:2 }}€
Découvert autorisé par défaut
Montant: {{ settings.overdraft_amount }}€
Pendant: {{ settings.overdraft_duration }}
{% if perms.kfet.change_settings %} {% endif %}
{% include 'kfet/base_messages.html' %}

Liste des comptes en négatifs

{% for neg in negatives %} {% endfor %}
Tri Nom Balance Réelle Début Découvert autorisé Jusqu'au Balance offset
{{ neg.account.trigramme }} {{ neg.account.name }} {{ neg.account.balance|floatformat:2 }}€ {% if neg.balance_offset %} {{ neg.account.real_balance|floatformat:2 }}€ {% endif %} {{ neg.start|date:'d/m/Y H:i:s'}} {{ neg.authz_overdraft_amount|default_if_none:'' }} {{ neg.authz_overdrafy_until|default_if_none:'' }} {{ neg.balance_offset|default_if_none:'' }}
{% endblock %}