summaryrefslogtreecommitdiff
path: root/templates/stats/show.jinja
blob: 1a2614e566fde4d24aef7c2d27db75ff3d73673c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "layout.jinja" %}

{% set JSFunction = "statJS" %}
{% set additionalJS = ["highstock", "jqueryui"] %}

{% block style %}
    {{ super() }}
    <link href="{{ "jqueryui/css/ui-darkness/jquery-ui.css" | static_url }}" rel="stylesheet" type="text/css">
{% endblock %}

{% block heading %}
    Statistiken
{% endblock %}

{% block content %}
    <div class="stats" data-consts='{{ consts | tojson }}' data-expenses='{{ expenses | tojson }}'></div>
{% endblock content %}