9 lines
248 B
HTML
9 lines
248 B
HTML
|
{% 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>
|
||
|
{% endblock %}
|