phase2: add modular apps, auth scaffolding, and base template routing
This commit is contained in:
11
templates/core/dashboard.html
Normal file
11
templates/core/dashboard.html
Normal file
@ -0,0 +1,11 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user