{% extends "base.html" %} {% block title %}Trésorerie{% endblock %} {% block content %}
| {{ part.account_root() }} | {% for period in part.periods() %}{{ period.month_name() }} | {% endfor %}||
|---|---|---|---|
| Total | {% for period in part.periods() %} {% with credit=part.credit(account, period) %}{% if credit %}{{ "%+.0f"|format(credit) }}{% endif %} | {% endwith %} {% endfor %}||
| {% for period in part.periods() %} | {{ "%.0f"|format(part.balance(account, period)) }} | {% endfor %}||
| {% if debit %}{{ "%+.0f"|format(debit) }}{% endif %} | {% endwith %} {% endfor %}|||
| {{ account }} | {% for period in part.periods() %} {% with credit=part.credit(account, period) %}{% if credit %}{{ "%+.0f"|format(credit) }}{% endif %} | {% endwith %} {% endfor %}||
| {% for period in part.periods() %} | {{ "%.0f"|format(part.balance(account, period)) }} | {% endfor %}||
| {% if debit %}{{ "%+.0f"|format(debit) }}{% endif %} | {% endwith %} {% endfor %}|||