2021-12-03 17:58:48 +01:00

18 lines
398 B
HTML

{% extends "layout.html" %}
{% block content %}
<h2>Predictions and Classifcations based on Historical Data</h2>
<div style = "height:10px"></div>
<p>
<div id='chart' class='chart'></div>
</p>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script type='text/javascript'>
var graphs = {{ plot | safe }};
Plotly.plot('chart',graphs,{});
</script>
{% endblock %}