summaryrefslogtreecommitdiff
path: root/templates/pages/show.jinja
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-04-15 00:59:59 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-04-15 00:59:59 +0200
commitbcc2e4fcec619078059102dbd5c8172010390a46 (patch)
treed4ad2f8883c090ff57294515852b4d02df8c38a1 /templates/pages/show.jinja
parenta5fdb04dca0c88822192b4b5f08b11aa55bb6d7b (diff)
downloadkosten-bcc2e4fcec619078059102dbd5c8172010390a46.tar.gz
kosten-bcc2e4fcec619078059102dbd5c8172010390a46.tar.bz2
kosten-bcc2e4fcec619078059102dbd5c8172010390a46.zip
Some reorganizing
Diffstat (limited to 'templates/pages/show.jinja')
-rw-r--r--templates/pages/show.jinja62
1 files changed, 0 insertions, 62 deletions
diff --git a/templates/pages/show.jinja b/templates/pages/show.jinja
deleted file mode 100644
index 4b5170f..0000000
--- a/templates/pages/show.jinja
+++ /dev/null
@@ -1,62 +0,0 @@
-{% extends "page.jinja" %}
-
-{% block heading %}
- {% if exps | length > 1 %}
- Aktuelle Kosten
- {% else %}
- Kosten für {{exps[0]|date}}
- {% endif %}
-{% endblock %}
-
-{% block js %}
- {{ super() }}
- <script type="text/javascript" src="{{ "js/show.js" | static_url }}"></script>
-{% endblock %}
-
-{% block content %}
- {% for e in exps %}
- {% if exps | length > 1 %}<h2>{{e|date}}</h2>{% endif %}
- {% for c in e.catexps | sort(attribute="cat.name") %}
- {% call(exp) detail(name=c.cat.name, sum=c.expense, set=c.all) %}
- <a href="{{ url_for(".edit", id = exp.id) }}">{{exp.day}}.{{exp.month}}. -- {{exp.description}}: {{exp.expense | eur }}</a>
- {% endcall %}
- {% endfor %}
-
- {% call(exp) detail(name="Constant", sum=e.constsum, set=e.consts) %}
- <a href="{{ url_for("consts.show", id = exp.id) }}">{{exp.monthly}} -- {{exp.description}}</a>
- {% endcall %}
-
- {% call(exp) detail(name="In Summa", sum=e.sum, set=e.all, color="#ff2d2d") %}
- <a href="{{ url_for(".edit", id = exp.id) }}">{{exp.day}}.{{exp.month}}. -- {{exp.description}}: {{exp.expense | eur}}</a>
- {% endcall %}
- <br>
- {% endfor %}
-
- {# Note: exps are given _reversed_, i.e. "exps | last" is
- the _first_ on the timeline #}
- {% set d = exps | last | prev_date | date %}
- {{ left_arrow(url_for(".show_date_str", p = d), d) }}
-
- {% set first = exps | first %}
- {% if not first is last_date %}
- {% set d = first | next_date | date %}
- {{ right_arrow(url_for(".show_date_str", p = d), d) }}
- {% endif %}
-{% endblock content %}
-
-{% macro detail(name, sum, set, color=None) %}
- <div class="detail">
- <img class="mark" src="{{ "images/closed.png" | static_url }}">
- {% call colorize(fgcolor=color) %}
- <span class="heading">{{name}}:</span> <span class="sum">{{sum | eur}}</span><br>
- {% endcall %}
- <div class="details">
- <ul>
- {% for exp in set %}
- <li class="expense">{{ caller(exp) }}</li>
- {% endfor %}
- </ul>
- </div>
- </div>
-{% endmacro %}
-