blob: d3cd66a3ab0894c32a2abbacb67452e4383ac5ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!doctype html>
<html>
<head>
<script type="text/javascript" src="{{ url_for('static', filename='dygraph-combined.js') }}"></script>
<script type="text/javascript" src="{{ url_for('static', filename='jquery-2.1.1.min.js') }}"></script>
</head>
<body>
<div id="graphdiv2"
style="width:800px; height:500px;">
</div>
<div>
<select id="dropdown">
{% for index in index_list %}
<option value="{{"{0}.{1}.{2}".format(*index)}}"
{% if loop.index==1 %}selected="selected"{% endif %}>
{{"{0}{1} {2}".format(*index)}}
</option>
{% endfor %}
</select>
</div>
<script type="text/javascript" src="{{ url_for('static', filename='main.js') }}"></script>
</body>
</html>
|