igdb/code/app/templates/admin.html

8 lines
231 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<h1>Hey, {{ current_user.username }}!</h1>
Do you want to nuke the database?
<li><a href="{{ url_for('nuke') }}">Yes, I want to burn down the world</a></li>
{% endblock %}