{% extends "base.html" %} {% block title %}{{ conf.title }}{% endblock %} {% block content %}

{{ conf.title }}

Retour au sommaire

{% for period in liabilities.periods() %} {% endfor %}
{{ conf.liabilities.title }}{{ period }}
{% for partconf in conf.liabilities.parts %} {% with title=partconf.title, part=liabilities.extract(match=partconf.account, depth=partconf.depth) %} {% include "inc/balance-sheet-part.html" %} {% endwith %} {% endfor %}
{% set last = None %} {% for period in liabilities.periods() %} {% set current = liabilities.balance(period=period) %} {% include "inc/value-percent.html" %} {% set last = current %} {% endfor %}
Total
{% for period in assets.periods() %} {% endfor %}
{{ conf.assets.title }}{{ period }}
{% for partconf in conf.assets.parts %} {% with title=partconf.title, part=assets.extract(match=partconf.account, depth=partconf.depth), inverted=True %} {% include "inc/balance-sheet-part.html" %} {% endwith %} {% endfor %}
{% set last = None %} {% for period in assets.periods() %} {% set current = - assets.balance(period=period) %} {% include "inc/value-percent.html" %} {% set last = current %} {% endfor %}
Total
{% endblock %}