igdb/code/app/templates/data.html

9 lines
248 B
HTML
Raw Normal View History

2020-01-09 08:06:18 +01:00
{% 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 %}