Add custom error pages

This commit is contained in:
2020-06-12 22:50:08 +02:00
parent bec6b19d1c
commit 4f5013460f
4 changed files with 35 additions and 0 deletions

View File

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