Create web app blueprint with Flask

This commit is contained in:
2020-06-12 20:03:25 +02:00
parent a20dab0053
commit e83f7a0271
8 changed files with 104 additions and 2 deletions

15
app/templates/data.html Normal file
View File

@@ -0,0 +1,15 @@
{% extends "base.html" %}
{% block content %}
<h1 class="text-center">How you like your data?</h1>
<li>
<p class="text-center">
<a href="{{ url_for('map_view') }}" class="btn btn-success" role="button" aria-pressed="true">Maps</a>
</p>
</li>
<li>
<p class="text-center">
<a href="{{ url_for('plot_view') }}" class="btn btn-success" role="button" aria-pressed="true">Plots</a>
</p>
</li>
{% endblock %}