summaryrefslogtreecommitdiff
path: root/templates/consts/list.jinja
diff options
context:
space:
mode:
Diffstat (limited to 'templates/consts/list.jinja')
-rw-r--r--templates/consts/list.jinja24
1 files changed, 0 insertions, 24 deletions
diff --git a/templates/consts/list.jinja b/templates/consts/list.jinja
deleted file mode 100644
index 7fef344..0000000
--- a/templates/consts/list.jinja
+++ /dev/null
@@ -1,24 +0,0 @@
-{% 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 %}