domoboard/templates/domoticz_smart_charts.html

26 lines
876 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_smart_charts"].iteritems() %}
ShowSmartLog("domoticz-chart-block-{{count}}",{{v[1]}},"{{k}}", "{{v[3]}}", "{{v[2]}}");
$("div#title_block_{{count}} h2").html("{{k}}");
setInterval(ShowSmartLog,60000,"domoticz-chart-block-{{count}}",{{v[1]}},"{{k}}", "{{v[3]}}", "{{v[2]}}");
{% endfor %}
});
</script>