summaryrefslogtreecommitdiff
path: root/kosten/templates/consts/list.jinja
diff options
context:
space:
mode:
Diffstat (limited to 'kosten/templates/consts/list.jinja')
-rw-r--r--kosten/templates/consts/list.jinja24
1 files changed, 24 insertions, 0 deletions
diff --git a/kosten/templates/consts/list.jinja b/kosten/templates/consts/list.jinja
new file mode 100644
index 0000000..7fef344
--- /dev/null
+++ b/kosten/templates/consts/list.jinja
@@ -0,0 +1,24 @@
+{% extends "layout.jinja" %}
+
+{% block heading %}
+ Konstante Kosten
+{% endblock %}
+
+{% block content %}
+ <p><a href="{{ url_for(".add") }}">Neuen Eintrag hinzufügen</a></p>
+
+ {{ list(current, "Aktuell") }}
+
+ {% 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) %}
+ <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>
+ {% endfor %}
+ </ul>
+{% endmacro %}