igdb/code/app/templates/plot.html

9 lines
248 B
HTML
Raw Normal View History

2020-01-10 23:29:23 +01:00
{% 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 %}