blob: 53985a7d6eeea0eff83d234a18c78017a50b3b32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends "layout.jinja" %}
{% set JSFunction = "statJS" %}
{% block js %}
{{ super() }}
<script type="text/javascript" src="{{ "js/highstock-2.0.3.js" | static_url }}"></script>
<script type="text/javascript" src="{{ "jqueryui/jquery-ui.js" | static_url }}"></script>
{% endblock %}
{% 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 %}
<h2>Konstante Kosten</h2>
<div class="stats" data-stats='{{ consts | tojson }}'></div>
{% endblock content %}
|