2020-01-09 03:17:31 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-01-09 05:20:50 +01:00
|
|
|
<h1>Hey, {{ current_user.username }}!</h1>
|
2020-01-09 03:17:31 +01:00
|
|
|
Do you want to nuke the database?
|
2020-01-09 05:20:50 +01:00
|
|
|
<li><a href="{{ url_for('nuke') }}">Yes, I want to burn down the world</a></li>
|
2020-01-09 03:17:31 +01:00
|
|
|
{% endblock %}
|