aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-05-22 16:22:30 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-05-22 16:22:30 +0100
commit5d489ef3685b32ee5e9c68839b1e187870c0d659 (patch)
treee28d090eb217cad555d07a154e6479878bae5c64 /config
parent44959fde6494d90d644a11866d86c704a5cf5034 (diff)
started work on optional User as organisation.Person object - tests
Diffstat (limited to 'config')
-rw-r--r--config/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/urls.py b/config/urls.py
index 43bec0d..663ec38 100644
--- a/config/urls.py
+++ b/config/urls.py
@@ -9,7 +9,7 @@ from django.views import defaults as default_views
admin.site.site_header = "ctrack admin"
urlpatterns = [
- path("", TemplateView.as_view(template_name="pages/home.html"), name="home"),
+ path("", include("ctrack.core.urls", namespace="core")),
path(
"about/", TemplateView.as_view(template_name="pages/about.html"), name="about"
),