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

22 lines
459 B
HTML

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