summaryrefslogtreecommitdiff
path: root/templates/expenses/show.jinja
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/expenses/show.jinja12
1 files changed, 8 insertions, 4 deletions
diff --git a/templates/expenses/show.jinja b/templates/expenses/show.jinja
index 4b6e362..395d1e5 100644
--- a/templates/expenses/show.jinja
+++ b/templates/expenses/show.jinja
@@ -3,6 +3,11 @@
{% set JSFunction = "showJS" %}
+{% block js %}
+ {{ super() }}
+ <script type="text/javascript" src="{{ "js/highcharts-3.0.5.js" | static_url }}"></script>
+{% endblock %}
+
{% block heading %}
{% if exps | length > 1 %}
Aktuelle Kosten
@@ -14,8 +19,8 @@
{% block content %}
{% for e, p in zip(exps,pies) %}
{% if exps | length > 1 %}<h2>{{e|date}}</h2>{% endif %}
- <div style="margin-bottom: 10px">
- <div style="display:inline-block; width:270px; vertical-align: top">
+ <div>
+ <div class="month_exp">
{% 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>
@@ -30,8 +35,7 @@
<a href="{{ url_for(".edit", id = exp.id) }}">{{exp.day}}.{{exp.month}}. -- {{exp.description}}: {{exp.expense | eur}}</a>
{% endcall %}
</div>
- <div style="display:inline-block; height:250px; margin-left:50px" data-pie='{{ p | tojson }}'>
- </div>
+ <div class="pie" data-pie='{{ p | tojson }}'></div>
</div>
{% endfor %}