Sith/accounting/templates/accounting/journal_bilan_accounting.jinja

33 lines
741 B
Plaintext
Raw Normal View History

2016-12-19 02:55:21 +00:00
{% extends "core/base.jinja" %}
{% block title %}
{% trans %}General journal:{% endtrans %} {{ object.name }}
{% endblock %}
{% block content %}
<h2>{% trans %}Accounting bilan: {% endtrans %} {{ object.name }}</h2>
<h3>{% trans %}Credit{% endtrans %}</h3>
<table>
<thead>
<tr>
<td>{% trans %}Type of operations{% endtrans %}</td>
<td>{% trans %}Sum{% endtrans %}</td>
</tr>
</thead>
<tbody>
{% for key in bilan.keys() %}
<tr>
<td>{{ key }}</td>
2016-12-20 23:43:54 +00:00
<td>{{ bilan[key] }}</td>
2016-12-19 02:55:21 +00:00
</tr>
{% endfor %}
</tbody>
</table>
2016-12-20 23:43:54 +00:00
<p>Total : {{ total_credit }}</p>
2016-12-19 02:55:21 +00:00
{% endblock %}