Compare commits

...

2 Commits

Author SHA1 Message Date
Edgar P. Burkhart 2e3d76ad19
Remove unused templates 2023-04-22 13:59:39 +02:00
Edgar P. Burkhart 210268928b
Move pagination file up 2023-04-22 13:58:30 +02:00
5 changed files with 4 additions and 18 deletions

View File

@ -1,9 +0,0 @@
{% extends "main/tag/value.html" %}
{% block "value" %}
{% if value %}
{% if value > 0 %}+{% endif %}
{{ block.super }}
{% else %}
{% endif %}
{% endblock %}

View File

@ -1,5 +0,0 @@
{% spaceless %}
<span>
{% block "value" %}{{ value }} €{% endblock %}
</span>
{% endspaceless %}

View File

@ -30,9 +30,9 @@
</p>
{% endif %}
{% if statements %}
{% include "main/list/pagination.html" %}
{% include "main/pagination.html" %}
{% include "statement/statement_table.html" %}
{% include "main/list/pagination.html" %}
{% include "main/pagination.html" %}
{% else %}
<p>{% translate "No statements to show" %}</p>
{% endif %}

View File

@ -42,9 +42,9 @@
</p>
{% endif %}
{% if transactions %}
{% include "main/list/pagination.html" %}
{% include "main/pagination.html" %}
{% include "transaction/transaction_table.html" %}
{% include "main/list/pagination.html" %}
{% include "main/pagination.html" %}
{% else %}
<p>{% translate "No transactions to show" %}</p>
{% endif %}