aboutsummaryrefslogtreecommitdiffstats
path: root/config/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-12-09 17:16:41 +0000
committerMatthew Lemon <y@yulqen.org>2024-12-09 17:16:41 +0000
commitb481069d9444cc0756bd9f6780e7700dcf4903f5 (patch)
tree5cba9e3d501f79747c8af22bd1b0fd7d783e7ded /config/urls.py
parentd3dda8c0bd194c28cf11c189c150c00bdc3e8a83 (diff)
wip: moving home page to home app and implementing reCAPTCHA
Diffstat (limited to 'config/urls.py')
-rw-r--r--config/urls.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/config/urls.py b/config/urls.py
index e213522..554d227 100644
--- a/config/urls.py
+++ b/config/urls.py
@@ -12,10 +12,11 @@ from django.views.generic import TemplateView
# import debug_toolbar
-admin.site.site_header = "Blackbird Admin Panel"
+admin.site.site_header = "Alphabet Learning Admin Panel"
urlpatterns = [
- path("", TemplateView.as_view(template_name="pages/home.html"), name="home"),
+ # path("", TemplateView.as_view(template_name="pages/home.html"), name="home"),
+ path("", include("alphabetlearning.pages.urls", namespace="pages")),
path(
"about/",
TemplateView.as_view(template_name="pages/about.html"),