diff options
author | prashantsinalkar | 2018-08-23 10:22:33 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-08-23 10:22:33 +0530 |
commit | e3d7a403539af04fb15dd8a7a683739e97612ad7 (patch) | |
tree | 123ff8f3b9f43cb0e2fad02a843b3c938d7374d4 | |
parent | 2a442780c2d9dca5db005638a07c011fc8619348 (diff) | |
download | SciPy2018-e3d7a403539af04fb15dd8a7a683739e97612ad7.tar.gz SciPy2018-e3d7a403539af04fb15dd8a7a683739e97612ad7.tar.bz2 SciPy2018-e3d7a403539af04fb15dd8a7a683739e97612ad7.zip |
added new urls
-rw-r--r-- | Scipy2018/urls.py | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/Scipy2018/urls.py b/Scipy2018/urls.py index 291cf38..871b3d1 100644 --- a/Scipy2018/urls.py +++ b/Scipy2018/urls.py @@ -14,9 +14,25 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin -from django.urls import include, path +from django.urls import include, path, re_path +from django.contrib.auth import views as auth_views + urlpatterns = [ - path('', include('website.urls')), + re_path(r'^', include('website.urls', namespace='website')), + re_path(r'^accounts/', include(('django.contrib.auth.urls', 'auth'), namespace='auth')), path('admin/', admin.site.urls), + + re_path(r'^', include('social.apps.django_app.urls', namespace='social')), + + re_path(r'^forgotpassword/$', auth_views.PasswordResetView.as_view(template_name= 'registration/password_reset_form.html'), name="password_reset"), + re_path(r'^password_reset/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$', auth_views.PasswordResetConfirmView.as_view(template_name = 'registration/password_reset_confirm.html'), name='password_reset_confirm'), + re_path(r'^password_reset/mail_sent/$', auth_views.PasswordResetDoneView.as_view(template_name= 'registration/password_reset_done.html'), + name='password_reset_done'), + re_path(r'^password_reset/complete/$', auth_views.PasswordResetCompleteView.as_view(template_name = 'registration/password_reset_complete.html'), + name='password_reset_complete'), + re_path(r'^changepassword/$', auth_views.PasswordChangeView.as_view(template_name='registration/password_change_form.html'), + name='password_change'), + re_path(r'^password_change/done/$', auth_views.PasswordChangeDoneView.as_view(template_name = 'registration/password_change_done.html'), + name='password_change_done'), ] |