Moved views to adequate apps

This commit is contained in:
Edgar P. Burkhart 2023-04-22 13:47:43 +02:00
parent 62f360e77b
commit f0a232f366
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
14 changed files with 21 additions and 19 deletions

View file

@ -10,13 +10,15 @@
{% block h2 %}{{ form.instance.icon|remix }}{{ form.instance }}{% endblock %}
{% block tables %}
{% if not form.instance|adding %}
<h3>{% translate "Statements" %}</h3>
{% include "main/table/statement.html" %}
{% endif %}
{% if transactions %}
<h3>{% translate "Transactions" %}</h3>
{% include "main/table/transaction.html" %}
<h3>{% translate "History" %}</h3>
{% include "main/plot/history.html" %}
{% if statements %}
<h3>{% translate "Statements" %}</h3>
{% include "statement/statement_table.html" %}
{% endif %}
{% if transactions %}
<h3>{% translate "Transactions" %}</h3>
{% include "transaction/transaction_table.html" %}
<h3>{% translate "History" %}</h3>
{% include "transaction/history_plot.html" %}
{% endif %}
{% endif %}
{% endblock %}