7 lines
146 B
HTML
7 lines
146 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>Hi, {{ current_user.username }}!</h1>
|
||
|
Do you want to nuke the database?
|
||
|
{% endblock %}
|