Add plotting functionality

This commit is contained in:
2020-01-10 23:29:23 +01:00
parent 6baa8779ca
commit ee9558a1bb
13 changed files with 190 additions and 55 deletions

View File

@@ -0,0 +1,8 @@
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
<h1>Plot</h1>
<img src="data:image/png;base64,{{ plot }}" alt="Image Placeholder">
<p><a href="{{ url_for('plot_selection') }}">Back</a></p>
{% endblock %}