diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-27 20:25:04 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-27 20:25:04 +0000 |
commit | dfc5ede55ee0bb70be9f5317324409d5f0eb763a (patch) | |
tree | d245e6fdfb5cfeda72a2e533988f0315fab47073 /config/urls.py | |
parent | d0ac61da601f46e383ea865b784d347229ac41dc (diff) |
added register and caf applications
Diffstat (limited to 'config/urls.py')
-rw-r--r-- | config/urls.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config/urls.py b/config/urls.py index a9a9108..cd7f6f2 100644 --- a/config/urls.py +++ b/config/urls.py @@ -17,7 +17,12 @@ urlpatterns = [ path(settings.ADMIN_URL, admin.site.urls), # User management path("users/", include("ctrack.users.urls", namespace="users")), - path("organisations/", include("ctrack.organisations.urls", namespace="organisations")), + path( + "organisations/", + include("ctrack.organisations.urls", namespace="organisations"), + ), + path("register/", include("ctrack.organisations.urls", namespace="register")), + path("caf/", include("ctrack.caf.urls", namespace="caf")), path("accounts/", include("allauth.urls")), # Your stuff: custom urls includes go here ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) |