aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-06-01 16:02:05 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-06-01 16:02:05 +0100
commitb58ec416d86fc8a4c7816fe96d2b1030deff37a5 (patch)
tree7cbf114b5da953cb2708f61653e9d7cc68682306 /config
parentf5cda7311f42b9ec9f4627121421b46b55e8346c (diff)
can add an engagement event
Diffstat (limited to '')
-rw-r--r--config/urls.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/config/urls.py b/config/urls.py
index 663ec38..f282893 100644
--- a/config/urls.py
+++ b/config/urls.py
@@ -1,9 +1,9 @@
from django.conf import settings
-from django.urls import include, path
from django.conf.urls.static import static
from django.contrib import admin
-from django.views.generic import TemplateView
+from django.urls import include, path
from django.views import defaults as default_views
+from django.views.generic import TemplateView
# change title
admin.site.site_header = "ctrack admin"
@@ -22,6 +22,7 @@ urlpatterns = [
include("ctrack.organisations.urls", namespace="organisations"),
),
path("caf/", include("ctrack.caf.urls", namespace="caf")),
+ path("register/", include("ctrack.register.urls", namespace="register")),
path("accounts/", include("allauth.urls")),
# Your stuff: custom urls includes go here
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)