summaryrefslogtreecommitdiff
path: root/nccps2018/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'nccps2018/urls.py')
-rw-r--r--nccps2018/urls.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/nccps2018/urls.py b/nccps2018/urls.py
index 21733fd..a688f8b 100644
--- a/nccps2018/urls.py
+++ b/nccps2018/urls.py
@@ -1,4 +1,4 @@
-"""Scipy2018 URL Configuration
+"""NCCPS2018 URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.1/topics/http/urls/
@@ -19,10 +19,10 @@ from django.contrib.auth import views as auth_views
urlpatterns = [
- re_path(r'^', include('website.urls', namespace='website')),
- re_path(r'^accounts/',
+ re_path(r'^nccps-2018/', include('website.urls', namespace='website')),
+ re_path(r'^nccps-2018/accounts/',
include(('django.contrib.auth.urls', 'auth'), namespace='auth')),
- path('admin/', admin.site.urls),
+ path('nccps-2018/admin/', admin.site.urls),
re_path(r'^', include('social.apps.django_app.urls', namespace='social')),