aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/core/urls.py
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 /ctrack/core/urls.py
parent44959fde6494d90d644a11866d86c704a5cf5034 (diff)
started work on optional User as organisation.Person object - tests
Diffstat (limited to 'ctrack/core/urls.py')
-rw-r--r--ctrack/core/urls.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/ctrack/core/urls.py b/ctrack/core/urls.py
new file mode 100644
index 0000000..8f2ca6e
--- /dev/null
+++ b/ctrack/core/urls.py
@@ -0,0 +1,9 @@
+from django.urls import path
+
+from ctrack.core.views import home_page
+
+app_name = "core"
+
+urlpatterns = [
+ path("", home_page, name="home")
+]