12 lines
304 B
HTML
12 lines
304 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}HoopScout | Dashboard{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<h1>Dashboard</h1>
|
|
<p>Welcome, {{ request.user.username }}.</p>
|
|
<p>This is the authenticated control center for saved searches and watchlists.</p>
|
|
</section>
|
|
{% endblock %}
|