Add table querying via form

This commit is contained in:
2020-01-09 19:13:24 +01:00
parent 6caca22472
commit 1aac68473d
12 changed files with 141 additions and 42 deletions

View File

@@ -1,8 +1,15 @@
{% extends "base.html" %}
{% block content %}
<h1>Hey, {{ current_user.username }}!</h1>
Wanna check out some cool data?
<li><a href="{{ url_for('tables') }}"></a></li>
<li><a href="{{ url_for('plots') }}"></a></li>
<h1 class="text-center">What do you want to check out?</h1>
<li>
<p class="text-center">
<a href="{{ url_for('table_selection') }}">Tables</a>
</p>
</li>
<li>
<p class="text-center">
<a href="{{ url_for('plots') }}">Plots</a>
</p>
</li>
{% endblock %}