-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_1.html
58 lines (44 loc) · 1.5 KB
/
plot_1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* -----------------------------------------------------------------------------
* @package smartVISU
* @author Martin Gleiß
* @copyright 2012
* @license GPL [http://www.gnu.de]
* -----------------------------------------------------------------------------
*/
{% extends "main.html" %}
{% block headline %}
<img class="icon" src='{{ icon0 }}measure_power.svg' />Plots / Graphen
{% endblock %}
{% block submenu %}
<style>
#plotperiod:after {
background: url({{ icon0 }}time_note.svg);
}
#plotperiodzoom:after {
background: url({{ icon0 }}time_note.svg);
}
#plotrtr:after {
background: url({{ icon0 }}time_note.svg);
}
#plottemprose:after {
background: url({{ icon0 }}time_note.svg);
}
</style>
<div data-role="navbar" class="nav-custom">
<ul>
<li><a href="index.php?page=plot_plot.period" id="plotperiod" class="ui-btn-icon-top">plot.period</a></li>
<li><a href="index.php?page=plot_plot.periodzoom" id="plotperiodzoom" class="ui-btn-icon-top">plot.period (zoom)</a></li>
<li><a href="index.php?page=plot_plot.rtr" id="plotrtr" class="ui-btn-icon-top">plot.rtr</a></li>
<li><a href="index.php?page=plot_plot.temprose" id="plottemprose" class="ui-btn-icon-top"">plot.temprose</a></li>
</ul>
</div>
{% endblock %}
{% block docu %}
Hier einige Besipiel für die die Widgets:
<ul>
<li>plot.period (+ zoom-Erweiterung)</li>
<li>plot.rtr</li>
<li>plot.temprose</li>
</ul>
{% endblock %}