6 lines
103 B
HTML
6 lines
103 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>Hi, {{ request.user.username }}</h1>
|
|
{% endblock %}
|