{% extends "base.html" %}
{% block title %}{{ conf.title }}{% endblock %}
{% block content %}
{{ conf.title }}
Retour au sommaire
| {{ conf.liabilities.title }} |
{% for period in liabilities.periods() %}
{{ period }} |
{% endfor %}
|
|
{% 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 %}
|
| Total |
{% set last = None %}
{% for period in liabilities.periods() %}
{% set current = liabilities.balance(period=period) %}
{% include "inc/value-percent.html" %}
{% set last = current %}
{% endfor %}
|
| {{ conf.assets.title }} |
{% for period in assets.periods() %}
{{ period }} |
{% endfor %}
|
|
{% 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 %}
|
| Total |
{% set last = None %}
{% for period in assets.periods() %}
{% set current = - assets.balance(period=period) %}
{% include "inc/value-percent.html" %}
{% set last = current %}
{% endfor %}
|
{% endblock %}