graphPaname/app/templates/visualization.html

10 lines
270 B
HTML
Raw Normal View History

2020-06-12 22:50:08 +02:00
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
<h1>Dataset visualization</h1>
2020-06-14 00:58:52 +02:00
<iframe class="map", src="/map" width="500" height="500"></iframe>
2020-06-14 00:14:09 +02:00
{{ table|safe }}
2020-06-12 22:50:08 +02:00
<p><a href="{{ url_for('data') }}">Back</a></p>
{% endblock %}