Sith/accounting/templates/accounting/journal_statement_accounting.jinja

33 lines
778 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 %}
2016-12-21 04:18:02 +00:00
<h3>{% trans %}Accounting statement: {% endtrans %} {{ object.name }}</h3>
2016-12-19 02:55:21 +00:00
2016-12-21 03:58:52 +00:00
<table>
<thead>
2016-12-19 02:55:21 +00:00
<tr>
2016-12-21 03:58:52 +00:00
<td>{% trans %}Operation type{% endtrans %}</td>
2016-12-19 02:55:21 +00:00
<td>{% trans %}Sum{% endtrans %}</td>
</tr>
2016-12-21 03:58:52 +00:00
</thead>
<tbody>
2016-12-21 04:18:02 +00:00
{% for k,v in statement.items() %}
2016-12-21 03:58:52 +00:00
<tr>
<td>{{ k }}</td>
<td>{{ v }}</td>
</tr>
{% endfor %}
</tbody>
2016-12-19 02:55:21 +00:00
2016-12-21 03:58:52 +00:00
</table>
2016-12-19 02:55:21 +00:00
2016-12-21 03:58:52 +00:00
<p><strong>{% trans %}Amount: {% endtrans %}</strong>{{ object.amount }} €</p>
<p><strong>{% trans %}Effective amount: {% endtrans %}</strong>{{ object.effective_amount }} €</p>
2016-12-19 02:55:21 +00:00
2016-12-21 03:58:52 +00:00
{% endblock %}