summaryrefslogtreecommitdiff
path: root/templates/consts/list.jinja
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2016-04-30 22:29:46 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2016-07-08 23:36:35 +0200
commitd5c4984fda9819e84c8c97979f95e5b5cc5e2eb1 (patch)
treed092384fb32f1395cc09c2008a1d8d230fe42d46 /templates/consts/list.jinja
parent667a7a4285d4e97ed5242e60df909f3ecdd35d59 (diff)
downloadkosten-const_groups.tar.gz
kosten-const_groups.tar.bz2
kosten-const_groups.zip
current_expensesconst_groups
Diffstat (limited to 'templates/consts/list.jinja')
-rw-r--r--templates/consts/list.jinja10
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/consts/list.jinja b/templates/consts/list.jinja
index 7fef344..80d22ad 100644
--- a/templates/consts/list.jinja
+++ b/templates/consts/list.jinja
@@ -7,18 +7,20 @@
{% block content %}
<p><a href="{{ url_for(".add") }}">Neuen Eintrag hinzufügen</a></p>
- {{ list(current, "Aktuell") }}
+ {{ list(current, "Aktuell", True) }}
{% if last_month %} {{ list(last_month, "Endeten letzten Monat") }} {% endif %}
{% if future %} {{ list(future, "Zukünftige") }} {% endif %}
{% if old %} {{ list(old, "Veraltet") }} {% endif %}
{% endblock %}
-{% macro list(list, h) %}
+{% macro list(list, h, use_current = False) %}
<h2>{{ h }}</h2>
<ul class="arrow">
- {% for c in list -%}
- <li><a href="{{ url_for(".show", id = c.id) }}">{{c.description}} ({{c.expense | eur}})</a></li>
+ {% for group in list -%}
+ {% for e in (group.current_expenses() if use_current else group.expenses) -%}
+ <li><a href="{{ url_for(".show", id = e.id) }}">{{group.description}} {% if e.description %}({{e.description}}) {% endif %} ({{e.expense | eur}})</a></li>
+ {% endfor %}
{% endfor %}
</ul>
{% endmacro %}