ae691ada79
I've decided instead to release a minimum viable product for v0.7.0 and get some feedback from the community, and most importantly some motivation as well to be able to keep working on magnetico as it currently feels like a Sisyphean where the development seem to never going to end...
30 lines
806 B
HTML
30 lines
806 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Statistics - magneticow</title>
|
|
<link rel="stylesheet" href="static/styles/reset.css">
|
|
<link rel="stylesheet" href="static/styles/essential.css">
|
|
<link rel="stylesheet" href="static/styles/statistics.css">
|
|
<script defer src="static/scripts/plotly-v1.26.1.min.js"></script>
|
|
<script defer src="static/scripts/statistics.js"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<script>
|
|
var discoveryRateData = [{
|
|
x: {{ dates | safe }},
|
|
y: {{ amounts | safe }},
|
|
mode: "lines+markers"
|
|
}];
|
|
</script>
|
|
|
|
<div><a href="/"><b>magnetico<sup>w</sup></b></a>​<sub>(pre-alpha)</sub></div>
|
|
</header>
|
|
|
|
<main>
|
|
<div id="discoveryRateGraph"></div>
|
|
</main>
|
|
</body>
|
|
</html>
|