summaryrefslogtreecommitdiff
path: root/templates/expenses/search.jinja
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-07-23 00:28:47 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-07-23 00:28:47 +0200
commit81493afa53a1a1d5ff4b417d05febf9f9e2a172b (patch)
tree00de0a1bb7c386cff4203aa7b0789569e75347bb /templates/expenses/search.jinja
parent6f6c8af2a55fabb69372e3fc4e8504167805d018 (diff)
downloadkosten-81493afa53a1a1d5ff4b417d05febf9f9e2a172b.tar.gz
kosten-81493afa53a1a1d5ff4b417d05febf9f9e2a172b.tar.bz2
kosten-81493afa53a1a1d5ff4b417d05febf9f9e2a172b.zip
Restructure
Diffstat (limited to 'templates/expenses/search.jinja')
-rw-r--r--templates/expenses/search.jinja25
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/expenses/search.jinja b/templates/expenses/search.jinja
deleted file mode 100644
index 5cd294b..0000000
--- a/templates/expenses/search.jinja
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "layout.jinja" %}
-
-{% block heading %}
- Suchergebnisse
-{% endblock %}
-
-{% block content %}
-
- {% set year = None %}
-
- {% for exp in exps %}
- {% if exp.year != year %}
- {% if year != None %}</ul>{% endif %}
- {% set year = exp.year %}
- <h2>{{ year }}</h2>
- <ul>
- {% endif %}
-
- <li>
- <a href="{{ url_for(".edit", id = exp.id) }}">{{exp.day}}.{{exp.month}}. -- {{exp.description}}: {{exp.expense | eur }}</a>
- </li>
-
- {% endfor %}
-
-{% endblock %}