domoboard/templates/domoticz_temp_charts.html

26 lines
854 B
HTML

<div class="row">
<div class="x_panel">
<div id="title_block_{{count}}" class="x_title">
<h2>Line Graph</h2>
<ul class="nav navbar-right panel_toolbox">
<li><a class="close-link"><i class="fa fa-close"></i></a>
</li>
</ul>
<div class="clearfix"></div>
</div>
<div class="x_content2">
<div id="domoticz-chart-block-{{count}}" style="height: 200px;"></div>
</div>
</div>
</div>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
{% for k, v in blockArray[count]["domoticz_temp_charts"].iteritems() %}
ShowTempLog("domoticz-chart-block-{{count}}",{{v[1]}},"{{k}}", "{{v[2]}}");
$("div#title_block_{{count}} h2").html("{{k}}");
setInterval(ShowGeneralGraph,60000,"domoticz-chart-block-{{count}}",{{v[1]}},"{{k}}", "{{v[2]}}");
{% endfor %}
});
</script>