blob: 1de1dccc47095427f8e64d852e9883c69ba954cb (
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.1.5.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 %}
|